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;
Returns e raised to the power d.
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.