Big Float.Division Operator
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Division( | Divides one BigFloat by another. |
Division( | Divides two numbers. |
Division(BigFloat, BigFloat) Operator
Divides one BigFloat by another.
public static BigFloat operator /(
BigFloat left,
BigFloat right
)
Parameters
Return Value
BigFloatThe quotient of left and right.
Remarks
The result has the same relative precision as the smaller of the relative precisions of left and right.
Division(BigFloat, BigInteger) Operator
Divides two numbers.
public static BigFloat operator /(
BigFloat left,
BigInteger right
)
Parameters
- left BigFloat
- A BigFloat value.
- right BigInteger
- A BigInteger value.
Return Value
BigFloatThe quotient of left and right.
Remarks
The result has the same relative precision as left.