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