Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Returns e raised to the specified power.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Function Exp ( _
d As Double _
) As Double
public static double Exp(
double d
)
public:
static double Exp(
double d
)
static member Exp :
d:float -> float
public static function Exp(
d : double
) : double
Parameters
- d
Type: System. . :: . .Double
A number specifying a power.
Return Value
Type: System. . :: . .Double
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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.