double MathArcsin(double x)
The MathArcsin function returns the arcsine of x in the range -π/2 to π/2 radians. If x is less than -1 or exceeds 1, the arcsine returns NaN (indeterminate value).
MathArcsin 関数は、x のアークサインを -π/2 から、π/2 ラジアンの範囲で返します。もし、x が -1 未満、または、1 を超える場合、アークサインはNaN(不確定値)を返します。
Parameters:
パラメータ:
1 2 | <b>x</b> - Value the arcsine of which to be calculated アークサインを計算する対象の値。 |
Sample:
サンプル:
1 2 3 4 5 6 7 | double x=0.32696, y; y=MathArcsin(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 |