Loading

VEC->

lists conversion math

The VEC-> function converts a Vector into a list.

VEC-> is available since version 1.0.6.

See also

Signatures

Examples

[ 42 41 40 42.42 ] ->VEC VEC->
//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->