BigFloat.Divide Method

Definition

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

Overload List

Divide(BigFloat, BigFloat) Divides one BigFloat by another.
Divide(BigFloat, BigFloat, AccuracyGoal, RoundingMode) Divides one BigFloat by another to the specified accuracy.

Divide(BigFloat, BigFloat)

Divides one BigFloat by another.
C#
public static BigFloat Divide(
	BigFloat left,
	BigFloat right
)

Parameters

left  BigFloat
A BigFloat.
right  BigFloat
A BigFloat.

Return Value

BigFloat
The quotient of left and right.

Remarks

The result has the same relative precision as the smaller of the relative precisions of left and right.

Divide(BigFloat, BigFloat, AccuracyGoal, RoundingMode)

Divides one BigFloat by another to the specified accuracy.
C#
public static BigFloat Divide(
	BigFloat left,
	BigFloat right,
	AccuracyGoal accuracyGoal,
	RoundingMode roundingMode
)

Parameters

left  BigFloat
A BigFloat value that specifies the dividend.
right  BigFloat
A BigFloat value that specifies the divisor.
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 quotient of left and right.

See Also