menu
dart_matrix package
documentation
utils.dart
zeros function
zeros function
dark_mode
light_mode
zeros
function
Matrix
zeros
(
int
row
,
int
col
)
Create a matrix with zeros
row
The number of rows in the matrix
col
The number of columns in the matrix
Returns The matrix
Implementation
Matrix zeros(int row, int col) { return Matrix(row, col); }
dart_matrix package
documentation
utils
zeros function
matrices.utils library