We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When you want to know about the shape size and dimensions of a Matrix.
import 'package:matrix2d/matrix2d.dart'; void main() { // create a matrix var matrix = [ [1, 1, 1], [2, 2, 2], [3, 3, 3] ]; //View the Number of Rows and Columns print(matrix.shape); }