BigFloat.Subtract(BigFloat, BigFloat) Method

Subtracts one number from another.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat Subtract(
	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.

See Also