BigFloat.Division Operator

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Division(BigFloat, BigFloat) Divides one BigFloat by another.
Division(BigFloat, BigInteger) Divides two numbers.

Division(BigFloat, BigFloat) Operator

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

Parameters

left  BigFloat
A BigFloat.
right  BigFloat
A BigFloat.

Return Value

BigFloat
The 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.
C#
public static BigFloat operator /(
	BigFloat left,
	BigInteger right
)

Parameters

left  BigFloat
A BigFloat value.
right  BigInteger
A BigInteger value.

Return Value

BigFloat
The quotient of left and right.

Remarks

The result has the same relative precision as left.

See Also