Subtracts one number from another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat operator -(
BigFloat left,
BigFloat right
)
Public Shared Operator - (
left As BigFloat,
right As BigFloat
) As BigFloat
public:
static BigFloat^ operator -(
BigFloat^ left,
BigFloat^ right
)
static let inline (-)
left : BigFloat *
right : BigFloat : BigFloat
Parameters
- left
- Type: Extreme.MathematicsBigFloat
The number to subtract from. - right
- Type: Extreme.MathematicsBigFloat
The number to subtract.
Return Value
Type:
BigFloatA
BigFloat number that equals
right subtracted from
left.
The precision of the result is the smaller of the absolute precisions of left and right.
Reference