Math.exp() FunctionNameMath.exp() Function---compute exAvailabilityNavigator 2.0, Internet Explorer 3.0 Synopsis
Math.exp(x) Arguments
Returnsex, e raised to the power of the specified exponent, x. DescriptionMath.exp() computes ex, where e is the base of the natural logarithms, approximately 2.71828. UsageYou can compute xy using Math.exp() with the following formula: xy = ey*ln(x) This formula can be expressed in JavaScript as follows:
Math.exp(y * Math.log(x)) |
|