Math387::ArcSin Function

Overload List

#SignatureDescription
1double ArcSin(const double X);Inverse sine.
2TCplx ArcSin(const TCplx &X);Inverse sine.
3TSCplx ArcSin(const TSCplx &X);

Overload 1: double ArcSin(const double X);

Inverse sine.

#NameTypeDescription
1Xconst double

Returns: 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
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler

Overload 2: TCplx ArcSin(const TCplx &X);

Inverse sine.

#NameTypeDescription
1Xconst TCplx &

Returns: 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.

Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler

Overload 3: TSCplx ArcSin(const TSCplx &X);

#NameTypeDescription
1Xconst TSCplx &
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler