Big Rational.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 a rational number by an arbitrary precision integer. |
Division( | Divides a rational number by another and returns the result. |
Division( | Divides a rational number by an arbitrary precision integer. |
Division(BigRational, BigInteger) Operator
Divides a rational number by an arbitrary precision integer.
public static BigRational operator /(
BigRational left,
BigInteger right
)
Parameters
- left BigRational
- A rational number.
- right BigInteger
- A BigInteger number.
Return Value
BigRationalThe result of dividing right by left.
Exceptions
Divide | The Numerator of right is zero. |
Division(BigRational, BigRational) Operator
Divides a rational number by another and returns the result.
public static BigRational operator /(
BigRational left,
BigRational right
)
Parameters
- left BigRational
- A rational number.
- right BigRational
- A rational number.
Return Value
BigRationalThe result of dividing right by left.
Implements
IDivisionOperators<TSelf, TOther, TResult>.Division(TSelf, TOther)Exceptions
Divide | The Numerator of right is zero. |
Division(BigRational, Int32) Operator
Divides a rational number by an arbitrary precision integer.
public static BigRational operator /(
BigRational left,
int right
)
Parameters
- left BigRational
- A rational number.
- right Int32
- An integer.
Return Value
BigRationalThe result of dividing right by left.
Exceptions
Divide | The Numerator of right is zero. |