double MathLog(double x)
The MathLog function returns the natural logarithm of x if successful. If x is negative, these functions return NaN (indeterminate value). If x is 0, they return INF (infinity).
MathLog 関数は、正常に終了した場合、x の自然対数を返します。もし、x が負の場合は、この関数は NaN(不確定値)を返します。x が 0 の場合は、INF(無限)を返します。
Parameters:
パラメータ:
1 2 | <b>x</b> - Value logarithm of which to be found. 検索する対数の値。 |
Sample:
サンプル:
1 2 3 4 | double x=9000.0,y; y=MathLog(x); Print("MathLog(",x,") = ", y); //Output: MathLog(9000)=9.10498 |