1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
@c This is part of the GNU Octave Interval Package Manual.
@c Copyright 2015 Oliver Heimlich.
@c Copyright 2017 Joel Dahne
@c See the file manual.texinfo for copying conditions.
@documentencoding UTF-8
@include macros.texinfo
@chapter Getting Started
This chapter takes you by the hand and gives a quick overview on the interval packages basic capabilities. More detailed information can usually be found in the functions' documentation.
@section Installation
It is recommended to install the package from specialized distributors for the particular platform, e. g., @uref{https://tracker.debian.org/pkg/octave-interval,Debian GNU/Linux}, @uref{https://trac.macports.org/browser/trunk/dports/math/octave-interval,MacPorts (for Mac OS X)}, @uref{http://www.freshports.org/math/octave-forge-interval/,FreshPorts (for FreeBSD)}, and so on. Since Octave version 4.0.1 the package is included in the @uref{https://ftp.gnu.org/gnu/octave/windows/,official installer for Microsoft Windows} and is installed automatically on that platform.
In any case, the interval package can alternatively be installed with the @command{pkg} command from within Octave. Latest release versions are published at Octave Forge and can be automatically downloaded with the @option{-forge} option.
@example
@c doctest: +SKIP
@group
pkg install -forge interval
@print{} For information about changes from previous versions
@print{} of the interval package, run 'news interval'.
@end group
@end example
During this kind of installation parts of the interval package are compiled for the target system, which requires development libraries for GNU Octave (version ≥ 4.2.0) and GNU MPFR (version ≥ 3.1.0) to be installed. It might be necessary to install packages “liboctave-dev” and “libmpfr-dev”, which are provided by most GNU distributions (names may vary).
In order to use the interval package during an Octave session, it must have been @emph{loaded}, i. e., added to the path. In the following parts of the manual it is assumed that the package has been loaded, which can be accomplished with the @command{pkg load interval} command. It is recommended to add this command at the beginning of script files, especially if script files are published or shared. Automatic loading of the interval package can be activated by adding the line @command{pkg load interval} to your @file{.octaverc} file located in your user folder, for more information @pxref{Startup Files,,, octave, GNU Octave manual}.
That's it. The package is ready to be used within Octave.
@section Set-based Interval Arithmetic
The most important and fundamental concepts in the context of the interval package are:
@itemize
@item
Intervals are closed, connected subsets of the real numbers. Intervals may be unbound (in either or both directions) or empty. In special cases @code{+inf} and @code{-inf} are used to denote boundaries of unbound intervals, but any member of the interval is a @emph{finite} real number.
@item
Classical functions are extended to interval functions as follows: The result of function @var{f} evaluated on interval @var{x} is an interval enclosure of all possible values of @var{f} over @var{x} where the function is defined. Most interval arithmetic functions in this package manage to produce a very accurate such enclosure.
@item
The result of an interval arithmetic function is an interval in general. It might happen, that the mathematical range of a function consist of several intervals, but their union will be returned, e. g., 1 / [-1, 1] = [Entire].
@end itemize
More details can be found in @ref{Introduction to Interval Arithmetic}.
@section Input and Output
Before exercising interval arithmetic, interval objects must be created from non-interval data. There are interval constants @funref{empty} and @funref{entire} and the interval constructors @funref{@@infsupdec/infsupdec} (create an interval from boundaries), @funref{midrad} (create an interval from midpoint and radius) and @funref{hull} (create an interval enclosure for a list of mixed arguments: numbers, intervals or interval literals). The constructors are very sophisticated and can be used with several kinds of parameters: Interval boundaries can be given by numeric values or string values with decimal numbers.
Create intervals for performing interval arithmetic
@example
@group
## Interval with a single number
infsupdec (1)
@result{} ans = [1]_com
@end group
@end example
@example
@group
## Interval defined by lower and upper bound
infsupdec (1, 2)
@result{} ans = [1, 2]_com
@end group
@end example
@example
@group
## Boundaries are converted from strings
infsupdec ("3", "4")
@result{} ans = [3, 4]_com
@end group
@end example
@example
@group
## Decimal number
infsupdec ("1.1")
@result{} ans ⊂ [1.0999, 1.1001]_com
@end group
@end example
@example
@group
## Decimal number with scientific notation
infsupdec ("5.8e-17")
@result{} ans ⊂ [5.7999e-17, 5.8001e-17]_com
@end group
@end example
@example
@group
## Interval around 12 with uncertainty of 3
midrad (12, 3)
@result{} ans = [9, 15]_com
@end group
@end example
@example
@group
## Again with decimal numbers
midrad ("4.2", "1e-3")
@result{} ans ⊂ [4.1989, 4.2011]_com
@end group
@end example
@example
@group
## Interval members with arbitrary order
hull (3, 42, "19.3", "-2.3")
@result{} ans ⊂ [-2.3001, +42]_com
@end group
@end example
@example
@group
## Symbolic numbers
hull ("pi", "e")
@result{} ans ⊂ [2.7182, 3.1416]_com
@end group
@end example
@strong{Warning:} In above examples decimal fractions are passed as a string to the constructor. Otherwise it is possible, that GNU Octave introduces conversion errors when the numeric literal is converted into a floating-point number @emph{before} it is passed to the constructor. The interval construction is a critical process, but after this the interval package takes care of any further conversion errors, representational errors, round-off errors and inaccurate numeric functions.
Beware of the conversion pitfall
@example
@group
## The numeric constant 0.3 is an approximation of the
## decimal number 0.3. An interval around this approximation
## will not contain the decimal number 0.3.
sprintf("%[.17g]", infsupdec (0.3))
@result{} ans = [0.29999999999999998, 0.29999999999999999]_com
@end group
@end example
@example
@group
## However, passing the decimal number 0.3 as a string
## to the interval constructor will create an interval which
## actually encloses the decimal number.
format short
infsupdec ("0.3")
@result{} ans ⊂ [0.29999, 0.30001]_com
@end group
@end example
For maximum portability it is recommended to use interval literals, which are standardized by IEEE Std 1788-2015. Both interval boundaries are then given as a string in the form @code{[@var{l}, @var{u}]}. The output in the examples above gives examples of several interval literals.
@example
@group
## Interval literal
infsupdec ("[20, 4.2e10]")
@result{} ans = [20, 4.2e+10]_com
@end group
@end example
The default text representation of intervals is not guaranteed to be exact, because this would massively spam console output. For example, the exact text representation of @code{realmin} would be over 700 decimal places long! However, the output is correct as it guarantees to contain the actual boundaries: a displayed lower (upper) boundary is always less (greater) than or equal to the actual boundary.
@subsection Interval Vectors, Matrices and Arrays
Vectors, matrices and arrays of intervals can be created by passing numerical arrays, string or cell arrays to the interval constructors. With cell arrays it is also possible to mix several types of boundaries.
Interval arrays behave like normal arrays in GNU Octave and can be used for broadcasting and vectorized function evaluation. Vectorized function evaluation usually is the key to create very fast programs.
Create interval arrays
@example
@group
M = infsupdec (magic (3))
@result{} M = 3×3 interval matrix
[8]_com [1]_com [6]_com
[3]_com [5]_com [7]_com
[4]_com [9]_com [2]_com
@end group
@end example
@example
@group
infsupdec (magic (3), magic (3) + 1)
@result{} ans = 3×3 interval matrix
[8, 9]_com [1, 2]_com [6, 7]_com
[3, 4]_com [5, 6]_com [7, 8]_com
[4, 5]_com [9, 10]_com [2, 3]_com
@end group
@end example
@example
@group
infsupdec ("0.1; 0.2; 0.3; 0.4; 0.5")
@result{} ans ⊂ 5×1 interval vector
[0.099999, 0.10001]_com
[0.19999, 0.20001]_com
[0.29999, 0.30001]_com
[0.39999, 0.40001]_com
[0.5]_com
@end group
@end example
@example
@group
infsupdec ("1 [2, 3]; 4, 5, 6")
@result{} ans = 2×3 interval matrix
[1]_com [2, 3]_com [Empty]_trv
[4]_com [5]_com [6]_com
@end group
@end example
@example
@group
infsupdec (@{1; eps; "4/7"; "pi"@}, @{2; 1; "e"; "0xff"@})
@result{} ans ⊂ 4×1 interval vector
[1, 2]_com
[2.2204e-16, 1]_com
[0.57142, 2.7183]_com
[3.1415, 255]_com
@end group
@end example
@example
@group
infsupdec (ones (2, 2, 2))
@result{} ans = 2×2×2 interval array
ans(:,:,1) =
[1]_com [1]_com
[1]_com [1]_com
ans(:,:,2) =
[1]_com [1]_com
[1]_com [1]_com
@end group
@end example
Strings can easily be used to create vectors and matrices of intervals, @code{,} and @code{;} are used to denote the next element in the row or a new row. Octave does however not have way of representing arrays with three or more dimensions using strings in the same way. Therefore you can only create such arrays by passing numerical matrices or cells to the constructor. Alternatively you can build it up in steps.
@example
@group
A = infsupdec ("1 [2, 3]; 4, 5; 6, 7")
@result{} A = 3×2 interval matrix
[1]_com [2, 3]_com
[4]_com [5]_com
[6]_com [7]_com
A(:,:,2) = infsupdec ("0.1, 0.2; 0.3, 0.4; 0.5, 0.6")
@result{} A ⊂ 3×2×2 interval array
ans(:,:,1) =
[1]_com [2, 3]_com
[4]_com [5]_com
[6]_com [7]_com
ans(:,:,2) =
[0.099999, 0.10001]_com [0.19999, 0.20001]_com
[0.29999, 0.30001]_com [0.39999, 0.40001]_com
[0.5]_com [0.59999, 0.60001]_com
@end group
@end example
@section Arithmetic Operations
The interval package comprises many interval arithmetic operations. A complete list can be found in its function reference. Function names match GNU Octave standard functions where applicable and follow recommendations by IEEE Std 1788-2015 otherwise, @pxref{Function Names}.
The interval arithmetic flavor used by this package is the “set-based” interval arithmetic and follows these rules: Intervals are sets. They are subsets of the set of real numbers. The interval version of an elementary function such as sin(x) is essentially the natural extension to sets of the corresponding point-wise function on real numbers. That is, the function is evaluated for each number in the interval where the function is defined and the result must be an enclosure of all possible values that may occur.
By default arithmetic functions are computed with best possible accuracy (which is more than what is guaranteed by GNU Octave core functions). The result will therefore be a tight and very accurate enclosure of the true mathematical value in most cases. Details on each function's accuracy can be found in its documentation, which is accessible with GNU Octave's @command{help} command.
Examples of using interval arithmetic functions
@example
@group
sin (infsupdec (0.5))
@result{} ans ⊂ [0.47942, 0.47943]_com
@end group
@end example
@example
@group
power (infsupdec (2), infsupdec (3, 4))
@result{} ans = [8, 16]_com
@end group
@end example
@example
@group
atan2 (infsupdec (1), infsupdec (1))
@result{} ans ⊂ [0.78539, 0.7854]_com
@end group
@end example
@example
@group
midrad (magic (3), 0.5) * pascal (3)
@result{} ans = 3×3 interval matrix
[13.5, 16.5]_com [25, 31]_com [42, 52]_com
[13.5, 16.5]_com [31, 37]_com [55, 65]_com
[13.5, 16.5]_com [25, 31]_com [38, 48]_com
@end group
@end example
@section Numerical Operations
Some interval functions do not return an interval enclosure, but a single number (in binary64 precision). Most important are @funref{@@infsup/inf} and @funref{@@infsup/sup}, which return the lower and upper interval boundaries.
More such operations are @funref{@@infsup/mid} (approximation of the interval's midpoint), @funref{@@infsup/wid} (approximation of the interval's width), @funref{@@infsup/rad} (approximation of the interval's radius), @funref{@@infsup/mag} (interval's magnitude) and @funref{@@infsup/mig} (interval's mignitude).
@example
@group
## Enclosure of the decimal number 0.1 is not exact
## and results in an interval with a small uncertainty.
wid (infsupdec ("0.1"))
@result{} ans = 1.3878e-17
@end group
@end example
@section Boolean Operations
Interval comparison operations produce boolean results. While some comparisons are especially for intervals (@funref{@@infsup/subset}, @funref{@@infsup/interior}, @funref{@@infsup/ismember}, @funref{@@infsup/isempty}, @funref{@@infsup/disjoint}, …) others are interval extensions of simple numerical comparison. For example, the less-or-equal comparison is mathematically defined as ∀a ∃b a ≤ b ∧ ∀b ∃a a ≤ b.
@example
@group
infsup (1, 3) <= infsup (2, 4)
@result{} ans = 1
@end group
@end example
@section Matrix and Array Operations
Above mentioned operations can also be applied element-wise to interval vectors, matrices or arrays. Many operations use vectorization techniques.
In addition, there are operations on interval matrices and arrays. These operations comprise: dot product, matrix multiplication, vector sums (all with tightest accuracy), matrix inversion, matrix powers, and solving linear systems (the latter are less accurate). As a result of missing hardware / low-level library support and missing optimizations, these operations are relatively slow compared to familiar operations in floating-point arithmetic.
Examples of using interval matrix functions
@example
@group
A = infsupdec ([1, 2, 3; 4, 0, 0; 0, 0, 1]);
A (2, 3) = "[0, 6]"
@result{} A = 3×3 interval matrix
[1]_com [2]_com [3]_com
[4]_com [0]_com [0, 6]_com
[0]_com [0]_com [1]_com
@end group
@end example
@example
@group
B = inv (A)
@result{} B = 3×3 interval matrix
[0]_trv [0.25]_trv [-1.5, 0]_trv
[0.5]_trv [-0.125]_trv [-1.5, -0.75]_trv
[0]_trv [0]_trv [1]_trv
@end group
@end example
@example
@group
A * B
@result{} ans = 3×3 interval matrix
[1]_trv [0]_trv [-1.5, +1.5]_trv
[0]_trv [1]_trv [-6, +6]_trv
[0]_trv [0]_trv [1]_trv
@end group
@end example
@example
@group
A = infsupdec (magic (3))
@result{} A = 3×3 interval matrix
[8]_com [1]_com [6]_com
[3]_com [5]_com [7]_com
[4]_com [9]_com [2]_com
@end group
@end example
@example
@group
c = A \ [3; 4; 5]
@result{} c ⊂ 3×1 interval vector
[0.18333, 0.18334]_trv
[0.43333, 0.43334]_trv
[0.18333, 0.18334]_trv
@end group
@end example
@example
@group
A * c
@result{} ans ⊂ 3×1 interval vector
[2.9999, 3.0001]_trv
[3.9999, 4.0001]_trv
[4.9999, 5.0001]_trv
@end group
@end example
@subsection Notes on Linear Systems
A system of linear equations in the form A@var{x} = b with intervals can be seen as a range of classical linear systems, which can be solved simultaneously. Whereas classical algorithms compute an approximation for a single solution of a single linear system, interval algorithms compute an enclosure for all possible solutions of (possibly several) linear systems. Some characteristics should definitely be known when linear interval systems are solved:
@itemize
@item
If the linear system is underdetermined and has infinitely many solutions, the interval solution will be unbound in at least one of its coordinates. Contrariwise, from an unbound result it can not be concluded whether the linear system is underdetermined or has solutions.
@item
If the interval result is empty in at least one of its coordinates, the linear system is guaranteed to be overdetermined and has no solutions. Contrariwise, from a non-empty result it can not be concluded whether all or some of the systems have solutions or not.
@item
Wide intervals within the matrix A can easily lead to a superposition of cases, where the rank of A is no longer unique. If the linear interval system contains cases of linear independent equations as well as linear dependent equations, the resulting enclosure of solutions will inevitably be very broad.
@end itemize
However, solving linear systems with interval arithmetic can produce useful results in many cases and automatically carries a guarantee for error boundaries. Additionally, it can give better information than the floating-point variants for some cases.
Standard floating point arithmetic versus interval arithmetic on ill-conditioned linear systems
@example
@group
A = [1, 0; 2, 0];
## This linear system has no solutions
A \ [3; 0]
@print{} warning: ...matrix singular to machine precision...
@result{} ans =
0.6000
0
@end group
@end example
@example
@group
## This linear system has many solutions
A \ [4; 8]
@result{} ans =
4
0
@end group
@end example
@example
@group
## The empty interval vector proves that there is no solution
infsup (A) \ [3; 0]
@result{} ans = 2×1 interval vector
[Empty]
[Empty]
@end group
@end example
@example
@group
## The unbound interval vector indicates
## that there may be many solutions
infsup (A) \ [4; 8]
@result{} ans = 2×1 interval vector
[4]
[Entire]
@end group
@end example
@section Plotting
Plotting of intervals in 2D and 3D can be achieved with the functions @funref{@@infsup/plot} and @funref{@@infsup/plot3} respectively. However, some differences in comparison with classical plotting in Octave shall be noted.
When plotting classical (non-interval) functions in Octave, one normally uses a vector and evaluates a function on that vector element-wise. The resulting X and Y (and possibly Z) coordinates are then drawn against each other, whilst coordinates can be connected using interpolated lines. The plot shows an approximation of the function's graph and the accuracy (and smoothness of the graph) primarily depends on the number of coordinates where the function has been evaluated.
Evaluating the same function on a single interval (e. g. the part of the function's domain that is of interest) yields a single interval result which covers the actual range of the function. Plotting just two intervals, input and output, against each other is boring, because the plot would only show a single rectangle. Contrariwise, evaluating the function for many individual points (e. g. using @funref{@@infsup/linspace}) would hardly fit in the philosophy of interval arithmetic. Individual points of evaluation are not interconnected by the interval plotting functions, because that would introduce errors.
The solution for plotting functions with interval arithmetic is called: “mincing”. The @funref{@@infsup/mince} function divides an interval into many smaller adjacent subsets, which can be used for range evaluations of the function. As a result, one gets vectors of intervals, which produce a coverage of the function's graph using rectangles. Please note, how the rectangles cover the sine function's true range from @minus{}1 to 1 in the following example, whilst the interpolated lines make a poor approximation.
@include image/interval-vs-normal-plot.m.texinfo
@myimage{image/interval-vs-normal-plot.m,Plotting an interval function and a classic function}
For 3D plotting the Octave meshgrid function, as usual, becomes handy. The following example shows how two different ranges for X and Y coordinates are used to construct a grid, where the function @funref{@@infsup/atan2} is evaluated. In this particular case the interval grid has gaps, because X and Y coordinates have been constructed such that intervals do not intersect.
@include image/interval-plot3.m.texinfo
@myimage{image/interval-plot3.m,Plotting 3D interval grid points}
|