asp.net.ph

Math.Exp Method

System Namespace   Math Class


Returns e raised to the specified power.

[ VB ]
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 number specifying a power.

Return Value

The number e raised to the power d. If d equals NaN or PositiveInfinity, that value is returned. If d equals NegativeInfinity, 0 is returned.

Remarks

Use the Pow method to calculate powers of other bases.

Exp is the inverse of Log.

See Also

Math Members   E   Pow   Log Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph