Vocabularymath.
matricesInputsOutputsWord descriptionCreate a matrix in which each element is its own coordinate pair, also called a
cartesian-product.
NotesExamplesUSING: math.matrices prettyprint ;
{ 2 4 } <coordinate-matrix> .
{
{ { 0 0 } { 0 1 } { 0 2 } { 0 3 } }
{ { 1 0 } { 1 1 } { 1 2 } { 1 3 } }
}
Definition