Classes | |
| class | INTERVAL |
| This page only reports the modifications brought to the INTERVAL class. More... | |
| class | INTERVAL_MATRIX |
| This page only reports the modifications brought to the INTERVAL_MATRIX class. More... | |
| class | INTERVAL_VECTOR |
| This page only reports the modifications brought to the INTERVAL_VECTOR class. More... | |
Functions | |
| INTERVAL | Tan (CONST INTERVAL &x) |
| INTERVAL | ArcSin (CONST INTERVAL &x) |
| INTERVAL | ArcCos (CONST INTERVAL &x) |
| INTERVAL | ArcTan2 (const INTERVAL &x, const INTERVAL &y) |
| INTERVAL | Sinh (CONST INTERVAL &x) |
| INTERVAL | Tanh (CONST INTERVAL &x) |
| INTERVAL | ArCosh (CONST INTERVAL &x) |
| INTERVAL | ArTanh (CONST INTERVAL &x) |
| INTERVAL | Log (CONST INTERVAL &x) |
| INTERVAL | Sqrt (CONST INTERVAL &x) |
| INTERVAL | Root (CONST INTERVAL &x, INT n) |
| bool | _GT (REAL x, REAL y) |
| bool | _GE (REAL x, REAL y) |
| bool | _LT (REAL x, REAL y) |
| bool | _LE (REAL x, REAL y) |
| INTERVAL | operator & (CONST INTERVAL &x, CONST INTERVAL &y) |
| INTERVAL | operator* (REAL x, CONST INTERVAL &y) |
| INTERVAL | operator* (CONST INTERVAL &x, REAL y) |
| INTERVAL | operator* (CONST INTERVAL &x, CONST INTERVAL &y) |
| INTERVAL | operator/ (REAL x, CONST INTERVAL &y) |
| INTERVAL | operator/ (CONST INTERVAL &x, REAL y) |
| INTERVAL | operator/ (CONST INTERVAL &x, CONST INTERVAL &y) |
| INTERVAL | Max (const INTERVAL &x, const INTERVAL &y) |
| INTERVAL | Min (const INTERVAL &x, const INTERVAL &y) |
| INTERVAL | Sign (const INTERVAL &x) |
Compute tan(x)
Tan(0,x) yields (Tan(0),Tan(x)) even if x is greater than Pi/2. Compute arcsin(x).
Compute arccos(x).
Compute arcsin(x).
Compute tanh(x)
Tanh([-inf,inf]) raises a division by zero exception. Compute arccosh(x).
Compute arctanh(x).
Compute the Neperian logarithm of x.
Compute sqrt(x)
Compute the expon-th root of x.
Root([0,0]) does not provide the expected result.| bool _GT | ( | REAL | x, | |
| REAL | y | |||
| ) | [inline] |
Return true if x is greater than y.
| bool _GE | ( | REAL | x, | |
| REAL | y | |||
| ) | [inline] |
Return true if x is greater than or equals y.
| bool _LT | ( | REAL | x, | |
| REAL | y | |||
| ) | [inline] |
Return true if x is lower than y.
| bool _LE | ( | REAL | x, | |
| REAL | y | |||
| ) | [inline] |
Return true if x is lower than or equals y.
Multiply two intervals.
[0,0] * [-inf,_] [0,0] * [_,inf] [-inf,_] * [_,0] [_,inf] * [_,0] [-0,_] * [_,inf] [inf([0,0])*-1,1] * [1,inf]
[inf([0,0])*-1,1] * [-inf,1] Divide a real by an interval. See operator/(const INTERVAL &, const INTERVAL &)
Divide an interval by a real. See operator/(const INTERVAL &, const INTERVAL &)
Divide two intervals.
Returns the maximum of two intervals, i.e.,
Returns the minimum of two intervals, i.e.,
Returns the sign of an interval, i.e.,
.
1.5.5