BigFloat.Division(BigFloat, BigInteger) Operator

Divides two numbers.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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