double MathExp(double d)
Returns the value of e raised to the power of d. At overflow, the function returns INF (infinity), and it returns 0 at underflow.
e を底とする d のベキ乗の値を返します。オーバーフローしたときは、この関数は INF(無限)を返し、アンダーフローの時は 0 を返します。
Parameters:
パラメータ:
1 2 | <b>d</b> - A number specifying the power. ベキ乗を指定する数値。 |
Sample:
サンプル:
1 2 3 4 | double x=2.302585093,y; y=MathExp(x); Print("MathExp(",x,") = ",y); //Output: MathExp(2.3026)=10 |