CConjfunction
Returns the complex conjugate of a complex number.
Syntax
FUNCTION CConj (BYREF z AS _complex) AS _complex
Also documented as
CConjugate — one description covers them all.Description
Returns the complex conjugate of a complex number.
Example
DIM z AS _complex = (2, 3) z = CConj(z) PRINT CStr(z) Output: 2 - 3 * i
Reference
- Include file
AfxComplex.inc - Defined in AfxNova/AfxComplex.inc:461
- Documented in Numeric Datatypes/Complex Numbers Procedures.md
- Topic: Complex Numbers Procedures