CTanfunction
Returns the complex tangent of a complex number.
Syntax
FUNCTION CTan (BYREF value AS _complex) AS _complex
Description
Returns the complex tangent of a complex number.
Example
DIM z AS _complex = (1, 1) z = CTan(z) PRINT CStr(z) Output: 0.2717525853195117 +1.083923327338695 * i
Reference
- Include file
AfxComplex.inc - Defined in AfxNova/AfxComplex.inc:943
- Documented in Numeric Datatypes/Complex Numbers Procedures.md
- Topic: Complex Numbers Procedures