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

 


MatToColList

Returns a list of the columns.

Syntax:

L := MatToColList(M);

list
  L  
matrix
  M  

Description:

no detailed description available yet


Example:


kash> M := Mat(Z, [[1,2,3], [4,5,6], [7,8,9], [10,11,12]]);
[ 1  2  3]
[ 4  5  6]
[ 7  8  9]
[10 11 12]
kash> L := MatToColList(M);
> [ [ 1, 4, 7, 10 ], [ 2, 5, 8, 11 ], [ 3, 6, 9, 12 ] ]


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