Previous Up Next

5.49.34  Number of rows: rowdim rowDim nrows

rowdim (or rowDim or nrows) takes as argument a matrix A.
rowdim (or rowDim or nrows) returns the number of rows of the matrix A.
Input:

rowdim([[1,2,3],[3,4,5]])

or:

nrows([[1,2,3],[3,4,5]])

Output:

2

Previous Up Next