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