MATLAB - Transpose of a Matrix



The transpose operation switches the rows and columns in a matrix. It is represented by a single quote(').

Example

Create a script file with the following code −

a = [ 10 12 23 ; 14 8 6; 27 8 9]
b = a'

When you run the file, it displays the following result −

a =
      10    12    23
      14     8     6
      27     8     9
b =
      10    14    27
      12     8     8
      23     6     9
matlab_matrics.htm
Advertisements