Interval.Addition Operator
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Addition( | Returns an interval shifted by a specified value.. |
| Addition( | Returns the sum of two intervals. |
| Addition( | Returns an interval shifted by a specified value.. |
Addition(Double, Interval) Operator
Returns an interval shifted by a specified value..
public static Interval operator +(
double shift,
Interval interval
)Parameters
Return Value
IntervalThe interval whose bounds are the sum of the bounds of interval and shift.
Addition(Interval, Interval) Operator
Returns the sum of two intervals.
public static Interval operator +(
Interval interval1,
Interval interval2
)Parameters
Return Value
IntervalThe interval whose bounds are the sum of the bounds of interval1 and interval2.
Addition(Interval, Double) Operator
Returns an interval shifted by a specified value..
public static Interval operator +(
Interval interval,
double shift
)Parameters
Return Value
IntervalThe interval whose bounds are the sum of the bounds of interval and shift.