Divides one
BigFloat by another to the specified accuracy.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Divide(
BigFloat left,
BigFloat right,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Public Shared Function Divide (
left As BigFloat,
right As BigFloat,
accuracyGoal As AccuracyGoal,
roundingMode As RoundingMode
) As BigFloat
public:
static BigFloat^ Divide(
BigFloat^ left,
BigFloat^ right,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
static member Divide :
left : BigFloat *
right : BigFloat *
accuracyGoal : AccuracyGoal *
roundingMode : RoundingMode -> BigFloat
Parameters
- left
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the dividend. - right
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the divisor. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
An AccuracyGoal value that specifies the desired accuracy. - roundingMode
- Type: Extreme.MathematicsRoundingMode
A RoundingMode value that specifies how the result should be rounded.
Return Value
Type:
BigFloatThe quotient of
left and
right.
Reference