ctranspose

Returns complex conjugate transpose: ' operator.

📝 Syntax

  • C= ctranspose(A)

  • C = A'

📥 Input argument

  • A - a variable

📤 Output argument

  • C - result: complex conjugate transpose of A.

📄 Description

C = ctranspose(A) returns the complex conjugate transpose of A.

💡 Examples

A = 3
B = A'
A = -i
B = A'
 A = sparse(eye(3, 4) * i)
B = A'

🔗 See also

transpose.

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?