CComplex.CArcSinRealmethod
Returns the complex arcsine of a real number.
Syntax
FUNCTION CArcSinReal (BYVAL value AS DOUBLE) AS CComplex
Also documented as
CASinReal — one description covers them all.Parameters
| Name | Description | |
|---|---|---|
value | A double value representing the real part of a complex number. |
Description
Returns the complex arcsine of a real number.
For a between -1 and 1, the function returns a real value in the range \[-pi/2, pi/2].
For a less than -1 the result has a real part of -pi/2 and a positive imaginary part.
For a greater than 1 the result has a real part of pi/2 and a negative imaginary part.
Example
DIM cpx AS CComplex PRINT cpx.CArcSinReal(1) Output: 1.570796326794897 +0 * i
Reference
- Include file
CComplex.inc - Defined in AfxNova/CComplex.inc:1341
- Documented in Numeric Datatypes/CComplex Class.md
- Topic: CComplex Class