MAT->
lists
math
conversion
The MAT->
function converts a Matrix into nested lists.
MAT-> is available since version 1.0.6.
See also
Signatures
Examples
//vector * matrix
[ 0 1 0 ] ->VEC
[
[ 1 2 3 4 ]
[ 10 20 30 40 ]
[ 100 200 300 400 ]
] ->MAT
*
VEC->
// matrix * t(matrix)
[
[ 1 2 3 4 ]
[ 10 20 30 40 ]
[ 100 200 300 400 ]
] ->MAT
DUP TRANSPOSE
*
MAT->