CSinfunction
Returns the complex sine of a complex number.
Syntax
FUNCTION CSin (BYREF value AS _complex) AS _complex
Description
Returns the complex sine of a complex number.
Example
DIM z AS _complex = (1, 1) z = CSin(z) PRINT CStr(z) Output: 1.298457581415977 +0.6349639147847361 * i
Reference
- Include file
AfxComplex.inc - Defined in AfxNova/AfxComplex.inc:886
- Documented in Numeric Datatypes/Complex Numbers Procedures.md
- Topic: Complex Numbers Procedures