Help Center

CArcSinfunction

Returns the complex arcsine of a complex number.

Numeric DatatypesfunctionAfxComplex.incdocumented

Syntax

FUNCTION CArcSin (BYREF value AS _complex) AS _complex
Also documented as CASin — one description covers them all.

Description

Returns the complex arcsine of a complex number. The branch cuts are on the real axis, less than -1 and greater than 1.

Example

DIM z AS _complex = (1, 1) z = CArcSin(z) PRINT CStr(z) Output: 0.6662394324925152 +1.061275061905036 * i

Reference

  • Include file AfxComplex.inc
  • Defined in AfxNova/AfxComplex.inc:1002
  • Documented in Numeric Datatypes/Complex Numbers Procedures.md
  • Topic: Complex Numbers Procedures