Vocabularymath.
matricesInputsOutputsWord descriptionApply the quotation to every column of the matrix. The output of the quotation must be a sequence.
Notes• | This word is intended for use with "flat" (2-dimensional) matrices. |
• | This word is the transpose variant of map. |
ExamplesUSING: sequences math.matrices prettyprint ;
3 <identity-matrix> [ reverse ] column-map .
{ { 0 0 1 } { 0 1 0 } { 1 0 0 } }
Definition