Loading

->VEC

lists math conversion

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

Vectors objects cannot be represented on the stack.

Vectors entries must be numbers.

->VEC is available since version 1.0.6.

See also

Signatures

Examples

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