Big Float.Division Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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.
Implements
IDivisionOperators<TSelf, TOther, TResult>.Division(TSelf, TOther)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.