up previous next
NumRows    --    number of rows in a matrix


Syntax
NumRows(M: MAT): INT

Description
This function returns the number of rows in a matrix.

Example
/**/  M := mat([[1,2,3], [4,5,6]]);
/**/  NumRows(M);
2

See Also