NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Math.Exp

Returns e raised to the specified power.

[Visual Basic]
Public Shared Function Exp( _
   ByVal d As Double _
) As Double
[C#]
public static double Exp(
   double d
);
[C++]
public: static double Exp(
   double d
);
[JScript]
public static function Exp(
   d : double
) : double;

Parameters

d
A power to which to raise the number e.

Return Value

Returns e raised to the power d.

Remarks

To calculate powers of other bases, use the Pow method. Exp is the inverse of Log, the natural logarithm.

The constant e is 2.71828182845904, the base for natural logarithms.

See Also

Math Class | Math Members | System Namespace