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:
パラメータ:
d - A number specifying the power.
ベキ乗を指定する数値。
Sample:
サンプル:
double x=2.302585093,y;
y=MathExp(x);
Print("MathExp(",x,") = ",y);
//Output: MathExp(2.3026)=10
|