CONJUGATE
Purpose:
Calculates the Complex conjugate.
Syntax:
CONJUGATE(val)
|
val
|
-
|
A scalar, series or table.
|
Returns:
A series, scalar, or table.
Example:
conjugate(3+4i)
results in 3 - 4i.
Example:
conjugate(polar(1 + i))
returns mag = 1.41421; angle = -0.7854, -45, which describes a complex number in polar coordinates where the magnitude is 1.41421 and the angle is -0.7854 radians, or -45 degrees.
Remarks:
The output is Complex regardless of input.
CONJUGATE can be abbreviated CONJ.
See Also:
~^ (Matrix Conjugate Transpose)
COMPLEX
IMAGINARY
MAGNITUDE
MAKECARTESIAN
MAKEPOLAR
PHASE
REAL