Main Content
transpose, .'
Transpose vector or matrix
Syntax
Description
B =
returns the nonconjugate
transpose of A
.'A
, that is, interchanges the row and column index
for each element. If A
contains complex elements, then
A.'
does not affect the sign of the imaginary parts. For
example, if A(3,2)
is 1+2i
and B =
A.'
, then the element B(2,3)
is also
1+2i
.
B = transpose(
is an alternate way to
execute A
)A.'
and enables operator overloading for classes.
Examples
Input Arguments
Tips
The complex conjugate transpose operator,
A'
, also negates the sign of the imaginary part of the complex elements inA
.
Extended Capabilities
Version History
Introduced before R2006a