Interval.Subtract Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Subtract( | Returns an interval negated and shifted to the right by a specified value. |
Subtract( | Returns the sum of two intervals. |
Subtract( | Returns an interval shifted to the left by a specified value. |
Subtract(Double, Interval)
Returns an interval negated and shifted to the right by a specified value.
public static Interval Subtract(
double shift,
Interval interval
)
Parameters
Return Value
IntervalThe interval whose bounds are the difference between shift and the bounds of interval.
Subtract(Interval, Interval)
Returns the sum of two intervals.
public static Interval Subtract(
Interval interval1,
Interval interval2
)
Parameters
Return Value
IntervalThe interval whose bounds are the difference between the bounds of interval1 and interval2.
Subtract(Interval, Double)
Returns an interval shifted to the left by a specified value.
public static Interval Subtract(
Interval interval,
double shift
)
Parameters
Return Value
IntervalThe interval whose bounds are the difference between the bounds of interval and shift.