Calculates the inverse sine of a given number.
function ArcSin(const X: Extended): Extended; overload; function ArcSin(const X: Double): Double; overload; function ArcSin(const X: Single): Single; overload;
Extended ArcSin(const Extended X); Double ArcSin(const Double X); Single ArcSin(const Single X);
Math
ArcSin returns the inverse sine of X. X must be between -1 and 1. The return value will be in the range [-Pi/2..Pi/2], in radians.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|