Click or drag to resize
MathExp Method
Returns e raised to the specified power.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static double Exp(
	double d
)

Parameters

d
Type: SystemDouble
A number specifying a power.

Return Value

Type: 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.
See Also