RosettaCodeData/Task/Identity-matrix/Maple/identity-matrix-3.maple
2023-07-01 13:44:08 -04:00

8 lines
380 B
Text

> Matrix( 4, shape = identity, datatype = integer[ 2 ] );
[1 0 0 0]
[ ]
[0 1 0 0]
[ ]
[0 0 1 0]
[ ]
[0 0 0 1]