double MathTan(double x)
MathTan returns the tangent of x. If x is greater than or equal to 263,
or less than or equal to -263, a loss of significance in the result occurs,
in which case the function returns an indefinite (same as a quiet NaN).
MathTan は、x のタンジェントを返します。もし、x が 263 以上であるか、または-263以下であるなら、結果の生成で意味が失われます。その場合、この関数は不確定を返します(Quiet
NaN と同じ)。
Parameters:
パラメータ:
x - Angle in radians.
ラジアンでの角度。
Sample:
サンプル:
double pi=3.1415926535;
double x,y;
x=MathTan(pi/4);
Print("MathTan(",pi/4," = ",x);
//Output: MathTan(0.7856)=1
|