Skip to content

ctranspose

Conjugate transpose (A').

V = ctranspose(X)

Returns the conjugate transpose of X — rows and columns swapped, complex entries replaced by their conjugates. Same as the ' operator (single quote / apostrophe). For real-valued X, equivalent to plain transpose.

A = [1+2i 3-4i; 5 6];
A' % [1-2i 5; 3+4i 6]
ctranspose(A) % same
  • mtimes — Matrix multiplication (A * B).
  • mldivide — Matrix left division (A \ B).