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

8 lines
360 B
Text

> LinearAlgebra:-IdentityMatrix( 4 );
[1 0 0 0]
[ ]
[0 1 0 0]
[ ]
[0 0 1 0]
[ ]
[0 0 0 1]