Matrix transposition: Difference between revisions

Added Matlab
(Added Matlab)
Line 465:
{5, 25, 125, 625}}
transposedMatrix = Transpose[originalMatrix]
 
=={{header|MATLAB}}==
<lang Matlab>
function [transposedMatrix] = transposematrix(originalMatrix)
 
transposedMatrix = originalMatrix';
</lang>
 
=={{header|Maxima}}==