Vocabularymath.
matricesInputsOutputsWord descriptionCreates a matrix of size
m x n, filled with
element.
ExamplesUSING: math.matrices prettyprint ;
3 2 10 <matrix> .
{ { 10 10 } { 10 10 } { 10 10 } }
USING: math.matrices prettyprint ;
4 1 "¢" <matrix> .
{ { "¢" } { "¢" } { "¢" } { "¢" } }
Definition