Create a zero-filled M×N matrix. Both dimensions must be ≥ 1.
Number of rows (must be ≥ 1).
Number of columns (must be ≥ 1).
Number of columns.
Number of rows.
Return a new MatMN with the same dimensions and element values.
A deep copy of this matrix.
Check whether this MatMN is element-wise equal to another, within an optional epsilon tolerance. Matrices must have the same dimensions.
The MatMN to compare against.
Maximum allowed difference per element (default 0).
true if dimensions match and all elements differ by at most epsilon.
Write value to the element at (row, col). Returns the written value.
Zero-based row index.
Zero-based column index.
The value to write.
The written value.
String representation with rows separated by semicolons.
A human-readable string of the matrix elements.
Read the element at (row, col). Zero-based indices.
Zero-based row index.
Zero-based column index.
The element value at the given position.
Variable-sized M×N matrix.
Converted from nape-compiled.js lines 17261–17395.