Divides two numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat operator /(
BigFloat left,
BigInteger right
)
Public Shared Operator / (
left As BigFloat,
right As BigInteger
) As BigFloat
public:
static BigFloat^ operator /(
BigFloat^ left,
BigInteger right
)
static let inline (/)
left : BigFloat *
right : BigInteger : BigFloat
Parameters
- left
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - right
- Type: Extreme.MathematicsBigInteger
A BigInteger value.
Return Value
Type:
BigFloatThe quotient of
left and
right.
The result has the same relative precision as left.
Reference