Hinweis:Dieser Abschnitt ist nur in englischer Sprache verfügbar. Wir bitten um Ihr Verständnis.
3.5.1.4.4 ImConjugate
Contents
Description
Get the conjugate of a complex.
Syntax
complex ImConjugate(complex cX)
Parameters
cX
- The complex number.
Return
Return the conjugate of a complex.
Example
imconjugate(3+4i) = ; // 3-4i complex c1 = 1+1i; complex c2; c2 = imconjugate(c1); c2 = ; // 1-1i