Matrix transposition: Difference between revisions

m
(Updated both D entries)
Line 1,181:
 
=={{header|MATLAB}} / {{header|Octave}}==
Matlab contains two built-in methods of transposing a matrix: by using the "<code>transpose(matrix)"</code> function, or by using the " <code>.' "</code> operator. The " <code>' "</code> operator yields the [[conjugate transpose|complex conjugate transpose]].
<lang Matlab>>> transpose([1 2;3 4])
 
Anonymous user