Math387.ArcSin / ArcSinf Method

Overload List

#SignatureDescription
1function ArcSin(const X: TCplx): TCplx;Inverse sine.
2function ArcSin(const X: TSCplx): TSCplx;
3function ArcSin(const X: Double): Double;Inverse sine.
4function ArcSinf(const X: Single): Single;

Overload 1: function ArcSin(const X: TCplx): TCplx;

Inverse sine.

#NameTypeDescription
1XTCplx

Returns: TCplx (complex) - Returns the inverse sine of X. X must be between -1 and 1.

Remarks:

To obtain an inverse sine for X outside the interval [-1,1] use this version of function.

Overload 2: function ArcSin(const X: TSCplx): TSCplx;

#NameTypeDescription
1XTSCplx

Returns: TSCplx

Overload 3: function ArcSin(const X: Double): Double;

Inverse sine.

#NameTypeDescription
1XDouble

Returns: Double - Returns the inverse sine of X. X must be between -1 and 1.

Remarks:

The return value will be in the range [-PI/2,PI/2], in radians for a real argument. To obtain an inverse sine for X outside the interval [-1,1] use the complex version of the function.

See Also: Math387.Sin

Overload 4: function ArcSinf(const X: Single): Single;

#NameTypeDescription
1XSingle

Returns: Single