double MathArccos(double x)
The MathArccos function returns the arccosine of x within the range 0 to π (in radians). If x is less than -1 or exceeds 1, the MathArccos returns NaN (indeterminate value).
MathArccos 関数は、x のアークコサインを 0 から π(ラジアンで)の範囲内で返します。もし、x が -1 未満、もしくは 1 を超える場合、MathArccos は、NaN(不確定値)を返します。
Parameters:
パラメータ:
1 2 | <b>x</b> - Value between -1 and 1 the arccosine of which to be calculated. -1 から 1 のアークコサインを計算する対象の値。 |
Sample:
サンプル:
1 2 3 4 5 6 7 | double x=0.32696, y; y=asin(x); Print("Arcsine of ",x," = ",y); y=acos(x); Print("Arccosine of ",x," = ",y); //Output: Arcsine of 0.326960=0.333085 //Output: Arccosine of 0.326960=1.237711 |