VOOZH about

URL: https://www.geeksforgeeks.org/matlab/calculate-complex-conjugate-transpose-in-matlab/

⇱ Calculate Complex Conjugate Transpose in MATLAB - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Calculate Complex Conjugate Transpose in MATLAB

Last Updated : 23 Jul, 2025

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:

  1. The ' operator.
  2. The ctranspose function.

Let us see the usage of both with examples.

Method 1: Using ' Operator:

Syntax:

vec_B = vec_A'

Example 1:

Output:

👁 Image
 

Method 2: Using ctranspose() 

The ctranspose() function does the same job as the ' operator except the fact that it enables operator overloading for classes.

Output:

👁 Image

It can be verified that both the methods give the exact same output.

Comment