BigFloat.Division(BigFloat, BigFloat) Operator

Divides one BigFloat by another.

Definition

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

Remarks

The result has the same relative precision as the smaller of the relative precisions of left and right.

See Also