BigFloat.ExtendPrecision Method

Returns a BigFloat value with at least the specified precision and the same value as this instance.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public BigFloat ExtendPrecision(
	AccuracyGoal accuracyGoal
)

Parameters

accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the new precision.

Return Value

BigFloat
A BigFloat value with at least accuracyGoal bits of precision with the same value as this instance.

Remarks

If the precision of this instance is greater than or equal to accuracyGoal, this instance is returned.

See Also