Returns e raised to the specified power.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Quad Exp(
Quad value
)
Public Shared Function Exp (
value As Quad
) As Quad
public:
static Quad Exp(
Quad value
)
static member Exp :
value : Quad -> Quad
Parameters
- value
- Type: Extreme.MathematicsQuad
A number specifying a power.
Return Value
Type:
Quad
The number e raised to the power value. If value equals System.Double.NaN or System.Double.PositiveInfinity,
that value is returned. If value equals System.Double.NegativeInfinity, 0 is
returned.
Exception | Condition |
---|
OverflowException |
The result is too large to be represented as a quadruple precision number.
|
Reference