MathLog

2019/07/17 19:00
66

double MathLog( double x)

MathLog関数はxの自然対数を返す。もしxが負の数であればNaN (未定義値)を返し、xが0ならばINF (無限)を返す。

Parameters:
x - 変数値
Sample:
double x=9000.0,y;
y=MathLog(x);
Print(“MathLog(”,x,") = ", y);
//Output: MathLog(9000)=9.10498

コメント