conj
Complex conjugate
📝Syntax
CZ = conj(M)
📥Input Arguments
Parameter Description
M a variable
📤Output Arguments
Parameter Description
CZ result of conj: complex conjugate.
📄Description

conj returns the complex conjugate.

💡Examples
x = [1+i,-i;i,2i];
r = conj(x)
🔗See Also
real
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub