Returns the sum of two intervals.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Interval Add(
Interval interval1,
Interval interval2
)
Public Shared Function Add (
interval1 As Interval,
interval2 As Interval
) As Interval
public:
static Interval Add(
Interval interval1,
Interval interval2
)
static member Add :
interval1 : Interval *
interval2 : Interval -> Interval
Parameters
- interval1
- Type: Extreme.MathematicsInterval
An Interval. - interval2
- Type: Extreme.MathematicsInterval
An Interval.
Return Value
Type:
IntervalThe interval whose bounds are the sum of the bounds of
interval1 and
interval2.
Reference