BigFloat.Exp Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Exp(BigFloat) Returns e raised to the specified power.
Exp(BigFloat, AccuracyGoal) Returns e raised to the specified power to the specified accuracy.
Exp(BigFloat, AccuracyGoal, RoundingMode) Returns e raised to the specified power to the specified accuracy.

Exp(BigFloat)

Returns e raised to the specified power.
C#
public static BigFloat Exp(
	BigFloat value
)

Parameters

value  BigFloat
A BigFloat value that specifies the exponent.

Return Value

BigFloat
The number e raised to the power value.

Remarks

The result has the same relative accuracy as value.

Exceptions

ArgumentNullExceptionvalue is null.

Exp(BigFloat, AccuracyGoal)

Returns e raised to the specified power to the specified accuracy.
C#
public static BigFloat Exp(
	BigFloat value,
	AccuracyGoal accuracyGoal
)

Parameters

value  BigFloat
A BigFloat value that specifies the exponent.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy.

Return Value

BigFloat
The number e raised to the power value.

Exceptions

ArgumentNullExceptionvalue is null.

Exp(BigFloat, AccuracyGoal, RoundingMode)

Returns e raised to the specified power to the specified accuracy.
C#
public static BigFloat Exp(
	BigFloat value,
	AccuracyGoal accuracyGoal,
	RoundingMode roundingMode
)

Parameters

value  BigFloat
A BigFloat value that specifies the exponent.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy.
roundingMode  RoundingMode
A RoundingMode value that specifies how the result should be rounded.

Return Value

BigFloat
The number e raised to the power value.

Exceptions

ArgumentNullExceptionvalue is null.

See Also