Previous Up Next

14.3.16  Dimension of a matrix

The dim command finds the dimension of a matrix.

Example

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

2,3
          

Previous Up Next