Vocabularymath.
matricesInputsOutputsWord descriptionGet the
nth column of the matrix.
NotesLike most Factor sequences, indexing is 0-based. The first column is given by
m 0 col.
ExamplesUSING: kernel math.matrices prettyprint ;
{ { 1 2 } { 3 4 } } 1 swap col .
{ 2 4 }
Definition