Matrix transposition: Difference between revisions

added GAP
(added Maxima. fixed Mathematica.)
(added GAP)
Line 233:
20 CONTINUE
10 CONTINUE
 
=={{header|GAP}}==
originalMatrix := [[1, 1, 1, 1],
[2, 4, 8, 16],
[3, 9, 27, 81],
[4, 16, 64, 256],
[5, 25, 125, 625]];
transposedMatrix := TransposedMat(originalMatrix);
 
=={{header|Haskell}}==
Anonymous user