Matrix transposition: Difference between revisions

Content added Content deleted
(→‎{{header|Go}}: added transpose in place)
Line 1,204: Line 1,204:
transposedMatrix = Transpose[originalMatrix]</lang>
transposedMatrix = Transpose[originalMatrix]</lang>


=={{header|MATLAB}}==
=={{header|MATLAB}} / {{header|Octave}}==
Matlab contains two built-in methods of transposing a matrix: by using the "transpose(matrix)" function, or by using the " .' " operator. The " ' " operator yields the complex conjugate transpose.
Matlab contains two built-in methods of transposing a matrix: by using the "transpose(matrix)" function, or by using the " .' " operator. The " ' " operator yields the complex conjugate transpose.