[back] [prev] [next] [index] [root]

 


MatRows

Returns the number of rows of a matrix.

Syntax:

n := MatRows(M);

integer
  n  
matrix
  M  

See also:  MatCols

Description:

no detailed description available yet


Example:


kash> M := Mat(Z,[[67,4,98,1],[-1,5,3,4],[6,-1,7,8]]);
[67  4 98  1]
[-1  5  3  4]
[ 6 -1  7  8]
kash> MatRows(M);
> 3


<- back[back] [prev] [next] [index] [root]