menu
dart_matrix package
documentation
matrix.dart
Matrix
Matrix.new constructor
Matrix.new constructor
dark_mode
light_mode
Matrix
constructor
Matrix
(
int
_row
,
int
_col
)
Create a new empty matrix
row
The number of rows in the matrix
col
The number of columns in the matrix
Returns The matrix
Implementation
Matrix(this._row, this._col) { empty(); }
dart_matrix package
documentation
matrix
Matrix
Matrix.new constructor
Matrix class