BigFloat.Subtraction Operator

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Subtraction(BigFloat, BigFloat) Subtracts one number from another.
Subtraction(BigFloat, Int32) Adds two BigFloat numbers.
Subtraction(Int32, BigFloat) Adds two BigFloat numbers.

Subtraction(BigFloat, BigFloat) Operator

Subtracts one number from another.
C#
public static BigFloat operator -(
	BigFloat left,
	BigFloat right
)

Parameters

left  BigFloat
The number to subtract from.
right  BigFloat
The number to subtract.

Return Value

BigFloat
A BigFloat number that equals right subtracted from left.

Remarks

The precision of the result is the smaller of the absolute precisions of left and right.

Subtraction(BigFloat, Int32) Operator

Adds two BigFloat numbers.
C#
public static BigFloat operator -(
	BigFloat left,
	int right
)

Parameters

left  BigFloat
An integer.
right  Int32
A BigFloat value.

Return Value

BigFloat

Remarks

The precision of the result is the smaller of the absolute precisions of left and right.

Subtraction(Int32, BigFloat) Operator

Adds two BigFloat numbers.
C#
public static BigFloat operator -(
	int left,
	BigFloat right
)

Parameters

left  Int32
An integer.
right  BigFloat
A BigFloat value.

Return Value

BigFloat

Remarks

The precision of the result is the smaller of the relative precisions of left and right.

See Also