RosettaCodeData/Task/Identity-matrix/Factor/identity-matrix.factor

11 lines
178 B
Factor
Raw Permalink Normal View History

2018-08-17 15:15:24 +01:00
USE: math.matrices
IN: scratchpad 6 identity-matrix .
{
{ 1 0 0 0 0 0 }
{ 0 1 0 0 0 0 }
{ 0 0 1 0 0 0 }
{ 0 0 0 1 0 0 }
{ 0 0 0 0 1 0 }
{ 0 0 0 0 0 1 }
}