|
|
|
|
|
Transpose
How to Examples Exercise How to: Finding the transpose of an MxN matrix A results in an NxM matrix denoted AT that has the property A(i, j) == AT(j, i). In MATLAB, we do not use the same notation as the book, we use this instead: Atranspose = A' We use the apostrophe when we want to find the transpose of a matrix. Examples: Exercise: |