![]() |
VOOZH | about |
The complex conjugate transpose of a matrix is the matrix obtained by transposing the original matrix and then applying the complex conjugate property of complex numbers on each of the element. In mathematics, this is also known as the Hermitian transpose of a matrix.
MATLAB provides two ways of calculating the complex conjugate transpose of a matrix:
Let us see the usage of both with examples.
Syntax:
vec_B = vec_A'
Example 1:
Output:
The ctranspose() function does the same job as the ' operator except the fact that it enables operator overloading for classes.
Output:
It can be verified that both the methods give the exact same output.