CCosfunction
Returns the complex cosine of a complex number.
Syntax
FUNCTION CCos (BYREF value AS _complex) AS _complex
Description
Returns the complex cosine of a complex number.
Example
DIM z AS _complex = (1, 1) z = CCos(z) PRINT CStr(z) Output: 0.8337300251311491 -0.9888977057628651 * i
Reference
- Include file
AfxComplex.inc - Defined in AfxNova/AfxComplex.inc:900
- Documented in Numeric Datatypes/Complex Numbers Procedures.md
- Topic: Complex Numbers Procedures