Interval package: Difference between revisions

From Octave
Jump to navigation Jump to search
m (→‎Related work: Fixed libieeep1788 name)
(75 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The GNU Octave [http://octave.sourceforge.net/interval/ interval package] provides data types and fundamental operations for real valued interval arithmetic based on the common floating-point format “binary64” a. k. a. double-precision. It aims to be standard compliant with the (upcoming) [http://standards.ieee.org/develop/project/1788.html IEEE 1788] and therefore implements the ''set-based'' interval arithmetic flavor. '''Interval arithmetic''' produces mathematically proven numerical results.
The GNU Octave interval package for real-valued [https://en.wikipedia.org/wiki/Interval_arithmetic interval arithmetic].
* 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</code> and <code>-inf</code> are used to denote boundaries of unbound intervals, but any member of the interval is a finite real number.
* Classical functions are extended to interval functions as follows: The result of function f evaluated on interval x is an interval '''enclosure of all possible values''' of f over x where the function is defined. Most interval arithmetic functions in this package manage to produce a very accurate such enclosure.
* 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].  


== Motivation ==
__TOC__
[[File:Interval-sombrero.png|280px|thumb|left|Example: Plotting the interval enclosure of a function]]
<div style="clear:left"></div>


{{quote|Give a digital computer a problem in arithmetic, and it will grind away methodically, tirelessly, at gigahertz speed, until ultimately it produces the wrong answer. … An interval computation yields a pair of numbers, an upper and a lower bound, which are guaranteed to enclose the exact answer. Maybe you still don’t know the truth, but at least you know how much you don’t know.|Brian Hayes|[http://dx.doi.org/10.1511/2003.6.484 DOI: 10.1511/2003.6.484]}}
== Distribution ==
* [https://octave.sourceforge.io/interval/ Latest version at Octave Forge]
** <code>pkg install -forge interval</code>
** [https://octave.sourceforge.io/interval/overview.html function reference]
** [https://octave.sourceforge.io/interval/package_doc/index.html package documentation] (user manual)
'''Third-party'''
* [https://tracker.debian.org/pkg/octave-interval Debian GNU/Linux], [https://launchpad.net/ubuntu/+source/octave-interval Launchpad Ubuntu]
* [https://aur.archlinux.org/packages/octave-interval/ archlinux user repository]
* Included in [https://ftp.gnu.org/gnu/octave/windows/ official Windows installer] and installed automatically with Octave (since version 4.0.1)
* [https://github.com/macports/macports-ports/tree/master/math/octave-interval/ MacPorts] for Mac OS X
* [https://www.freshports.org/math/octave-forge-interval/ FreshPorts] for FreeBSD
* [https://cygwin.com/cgi-bin2/package-grep.cgi?grep=octave-interval Cygwin] for Windows
* [https://build.opensuse.org/package/show/science/octave-forge-interval openSUSE build service]


{| class="wikitable" style="margin: auto"
== Development status ==
!Standard floating point arithmetic
* Completeness
!Interval arithmetic
** All required functions from [https://standards.ieee.org/findstds/standard/1788-2015.html IEEE Std 1788-2015], IEEE standard for interval arithmetic, are implemented. The standard was approved by IEEE-SA on June 11, 2015. It will remain active for ten years. The standard was approved by ANSI in 2016.
|-
** Also, the minimalistic standard [https://standards.ieee.org/findstds/standard/1788.1-2017.html IEEE Std 1788.1-2017], IEEE standard for interval arithmetic (simplified) is fully implemented. The standard was approved by IEEE-SA on December 6, 2017 (and published in January 2018).
| style = "vertical-align: top" |
** In addition there are functions for interval matrix arithmetic, N-dimensional interval arrays, plotting, and solvers.
<span style="opacity:.5">octave:1> </span>19 * 0.1 - 2 + 0.1
* Quality
ans =  1.3878e-16
** Most arithmetic operations produce tight, correctly-rounded results. That is, the smallest possible interval with double-precision (binary64) endpoints, which encloses the exact result.
| style = "vertical-align: top" |
** Includes [https://github.com/oheim/ITF1788 large test suite] for arithmetic functions
<span style="opacity:.5">octave:1> </span>x = infsup ("0.1");
** For open bugs please refer to the [https://savannah.gnu.org/search/?words=forge+interval&type_of_search=bugs&only_group_id=1925&exact=1 bug tracker].
<span style="opacity:.5">octave:2> </span>19 * x - 2 + x
* Performance
ans ⊂ [-3.1918911957973251e-16, +1.3877787807814457e-16]
** All elementary functions have been [https://octave.org/doc/interpreter/Vectorization-and-Faster-Code-Execution.html vectorized] and run fast on large input data.
|}
** Arithmetic is performed with the [http://www.mpfr.org/ GNU MPFR] library internally. Where possible, the optimized [http://web.archive.org/web/20170128033523/http://lipforge.ens-lyon.fr/www/crlibm/ CRlibm] library is used.
* Portability
** Runs in GNU Octave ≥ 3.8.2
** Known to run under GNU/Linux, Microsoft Windows, macOS, and FreeBSD


Floating-point arithmetic, as specified by [http://en.wikipedia.org/wiki/IEEE_floating_point IEEE 754], is available in almost every computer system today. It is wide-spread, implemented in common hardware and integral part in programming languages. For example, the double-precision format is the default numeric data type in GNU Octave. Benefits are obvious: The results of arithmetic operations are well-defined and comparable between different systems and computation is highly efficient.
== Project ideas (TODOs) ==
* To be considered in the future: Algorithms can be migrated from the C-XSC Toolbox (C++ code) from [http://www2.math.uni-wuppertal.de/wrswt/xsc/cxsc_new.html] (nlinsys.cpp and cpzero.cpp), however these would need gradient arithmetic and complex arithmetic.
* Interval version of <code>interp1</code>
* Extend <code>subsasgn</code> to allow direct manipulation of inf and sup (and dec) properties.
>> A = infsup ("[2, 4]");
>> A.inf = infsup ("[1, 3]")
A = [1, 4]
>> A.inf = 5
A = [Empty]
:* While at it, also allow multiple subscripts in <code>subsasgn</code>
>> A(:)(2:4)(2) = 42; # equivalent to A(3) = 42
>> A.inf(3) = 42; # also  A(3).inf = 42
>> A.inf.inf = 42 # should produce error?
>> A.inf.sup = 42 # should produce error?
* Tight Enclosure of Matrix Multiplication with Level 3 BLAS [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ozaki.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ozaki.pdf]
* Verified Convex Hull for Inexact Data [http://kam.mff.cuni.cz/conferences/swim2015/abstracts/ohta.pdf] [http://kam.mff.cuni.cz/conferences/swim2015/slides/ohta.pdf]
* Implement user-controllable output from the interval standard (e. g. via printf functions):
a) It should be possible to specify the preferred overall field width (the length of s).
b) It should be possible to specify how Empty, Entire and NaI are output,
    e.g., whether lower or upper case, and whether Entire becomes [Entire] or [-Inf, Inf].
c) For l and u, it should be possible to specify the field width,
    and the number of digits after the point or the number of significant digits.
    (partly this is already implemented by output_precision (...) / `format long` / `format short`)
d) It should be possible to output the bounds of an interval without punctuation,
    e.g., 1.234 2.345 instead of [1.234, 2.345]. For instance, this might be a
    convenient way to write intervals to a file for use by another application.


However, there are some downsides of floating-point arithmetic in practice, which will eventually produce errors in computations.
== Compatibility ==
* Floating-point arithmetic is often used mindlessly by developers. [http://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html] [http://www.cs.berkeley.edu/~wkahan/Mindless.pdf] [http://www.ima.umn.edu/~arnold/disasters/]
The interval package's main goal is to be compliant with IEEE Std 1788-2015, so it is compatible with other standard-conforming implementations (on the set of operations described by the standard document). Other implementations, which are known to aim for standard conformance are:
* The binary data types categorically are not suitable for doing financial computations. Very often representational errors are introduced when using “real world” decimal numbers. [http://en.wikipedia.org/wiki/Decimal_computer]
* Even if the developer would be proficient, most developing environments / technologies limit floating-point arithmetic capabilities to a very limited subset of IEEE 754: Only one or two data types, no rounding modes, missing functions … [http://www.cs.berkeley.edu/~wkahan/JAVAhurt.pdf]
* Results are hardly predictable. [https://hal.archives-ouvertes.fr/hal-00128124/en/] All operations produce the best possible accuracy ''at runtime'', this is how a floating point works. Contrariwise, financial computer systems typically use a [http://en.wikipedia.org/wiki/Fixed-point_arithmetic fixed-point arithmetic] (COBOL, PL/I, …), where overflow and rounding can be precisely predicted ''at compile-time''.
* Results are system dependent. All but the most basic floating-point operations are not guaranteed to be accurate and produce different results depending on low level libraries and hardware. [http://www.gnu.org/software/libc/manual/html_node/Errors-in-Math-Functions.html#Errors-in-Math-Functions] [http://developer.amd.com/tools-and-sdks/cpu-development/libm/]
* If you do not know the technical details (cf. first bullet) you ignore the fact that the computer lies to you in many situations. For example, when looking at numerical output and the computer says “<code>ans = 0.1</code>,” this is not absolutely correct. In fact, the value is only ''close enough'' to the value 0.1. Additionally, many functions produce limit values (∞ × −∞ = −∞, ∞ ÷ 0 = ∞, ∞ ÷ −0 = −∞, log (0) = −∞), which is sometimes (but not always!) useful when overflow and underflow occur.


Interval arithmetic addresses above problems in its very special way and introduces new possibilities for algorithms. For example, the [http://en.wikipedia.org/wiki/Interval_arithmetic#Interval_Newton_method interval newton method] is able to find ''all'' zeros of a particular function.
* [https://github.com/JuliaIntervals/IntervalArithmetic.jl IntervalArithmetic.jl package] (Julia)
* [https://github.com/jinterval/jinterval JInterval library] (Java)
* [https://github.com/nadezhin/libieeep1788 ieeep1788 library] (C++) created by Marco Nehmeier, later forked by Dmitry Nadezhin


== Theory ==
=== Octave Forge simp package ===
In 2008/2009 there was a Single Interval Mathematics Package (SIMP) for Octave, which has eventually become unmaintained at Octave Forge.


=== Online Introductions ===
The simp package contains a few basic interval arithmetic operations on scalar or vector intervals. It does not consider inaccurate built-in arithmetic functions, round-off, conversion and representational errors. As a result its syntax is very easy, but the arithmetic fails to produce guaranteed enclosures.


[http://www.maths.manchester.ac.uk/~higham/narep/narep416.pdf  Interval analysis in MATLAB] Note: The INTLAB toolbox for Matlab is not entirely compatible with this interval package for GNU Octave, cf. [[#Compatibility]]. However, basic operations can be compared and should be compatible for common intervals.
It is recommended to use the interval package as a replacement for simp. However, function names and interval constructors are not compatible between the packages.
 
=== INTLAB ===
This interval package is ''not'' meant to be a replacement for INTLAB and any compatibility with it is pure coincidence. Since both are compatible with GNU Octave, they happen to agree on many function names and programs written for INTLAB may possibly run with this interval package as well. Some fundamental differences that I am currently aware of:
* INTLAB is non-free software, it grants none of the [http://www.gnu.org/philosophy/free-sw.html four essential freedoms] of free software
* INTLAB is not conforming to IEEE Std 1788-2015 and the parsing of intervals from strings uses a different format—especially for the uncertain form
* INTLAB supports intervals with complex numbers and sparse interval matrices, but no empty intervals
* INTLAB uses inferior accuracy for most arithmetic operations, because it focuses on speed
* Basic operations can be found in both packages, but the availability of special functions depends


=== Moore's fundamental theroem of interval arithmetic ===
Let '''''y''''' = ''f''('''''x''''') be the result of
interval-evaluation of ''f'' over a box '''''x''''' = (''x''<sub>1</sub>, … , ''x''<sub>''n''</sub>)
using any interval versions of its component library functions. Then
# In all cases, '''''y''''' contains the range of ''f'' over '''''x''''', that is, the set of ''f''('''''x''''') at points of '''''x''''' where it is defined: '''''y''''' ⊇ Rge(''f'' | '''''x''''') = {''f''(''x'') | ''x'' ∈ '''''x''''' ∩ Dom(''f'') }
# If also each library operation in ''f'' is everywhere defined on its inputs, while evaluating '''''y''''', then ''f'' is everywhere defined on '''''x''''', that is Dom(''f'') ⊇ '''''x'''''.
# If in addition, each library operation in ''f'' is everywhere continuous on its inputs, while evaluating '''''y''''', then ''f'' is everywhere continuous on '''''x'''''.
# If some library operation in ''f'' is nowhere defined on its inputs, while evaluating '''''y''''', then ''f'' is nowhere defined on '''''x''''', that is Dom(''f'') ∩ '''''x''''' = Ø.


== What to expect ==
<div style="display:flex; align-items: flex-start">
The interval arithmetic provided by this interval package is '''slow''', but '''accurate'''.
<div style="margin-right: 2em">
{{Code|Computation with this interval package|<syntaxhighlight lang="octave">
pkg load interval
A1 = infsup (2, 3);
B1 = hull (-4, A2);
C1 = midrad (0, 2);


''Why is the interval package slow?''
A1 + B1 * C1
All arithmetic interval operations are simulated in high-level octave language using C99 or multi-precision floating-point routines, which is a lot slower than a hardware implementation [https://books.google.de/books?id=JTc4XdXFnQIC&pg=PA61]. Building interval arithmetic operations from floating-point routines is easy for simple monotonic functions, e. g., addition and subtraction, but is complex for others, e. g., [http://exp.ln0.de/heimlich-power-2011.htm interval power function], atan2, or [[#Reverse_arithmetic_operations|reverse functions]]. For some interval operations it is not even possible to rely on floating-point routines, since not all required routines are available in C99 or BLAS.
</syntaxhighlight>
}}
</div><div>
{{Code|Computation with INTLAB|<syntaxhighlight lang="octave">
startintlab
A2 = infsup (2, 3);
B2 = hull (-4, A2);
C2 = midrad (0, 2);


For example, multiplication of matrices with many elements becomes unfeasible as it takes a lot of time.
A2 + B2 * C2
</syntaxhighlight>
}}
</div>
</div>


{| class="wikitable" style="margin: auto; align:right"
==== Known differences ====
|+ Approximate runtime (wall clock time in seconds) <span style="font-weight: normal">— Results have been produced with GNU Octave 3.8.2 and Interval package 0.1.4 on an Intel® Core™ i5-4340M CPU (2.9–3.6 GHz)</span>
Simple programs written for INTLAB should run without modification with this interval package. The following table lists common functions that use a different name in INTLAB.
!rowspan="2"|Interval matrix size
{|
!valign="top" style="min-width:6em"|<code>plus</code>
! interval package
!valign="top" style="min-width:6em"|<code>times</code>
! INTLAB
!valign="top" style="min-width:6em"|<code>log</code>
!valign="top" style="min-width:6em"|<code>pow</code>
!valign="top" style="min-width:6em"|<code>mtimes</code>
!valign="top" style="min-width:6em"|<code>mtimes</code>
!valign="top" style="min-width:6em"|<code>inv</code>
|-
|-
!style="font-weight:normal"|tightest<br/>accuracy
| infsup (x)
!style="font-weight:normal"|tightest<br/>accuracy
| intval (x)
!style="font-weight:normal"|tightest<br/>accuracy
!style="font-weight:normal"|tightest<br/>accuracy
!style="font-weight:normal"|valid<br/>accuracy
!style="font-weight:normal"|tightest<br/>accuracy
!style="font-weight:normal"|valid<br/>accuracy
|-
|-
| 10 × 10
| wid (x)
|align="right"| < 0.001
| diam (x)
|align="right"| < 0.001
|align="right"| 0.001
|align="right"| 0.008
|align="right"| 0.001
|align="right"| 0.002
|align="right"| 0.025
|-
|-
| 100 × 100
| subset (a, b)
|align="right"| 0.003
| in (a, b)
|align="right"| 0.010
|align="right"| 0.055
|align="right"| 0.61
|align="right"| 0.012
|align="right"| 0.53
|align="right"| 0.30
|-
|-
| 500 × 500
| interior (a, b)
|align="right"| 0.060
| in0 (a, b)
|align="right"| 0.24
|align="right"| 1.3
|align="right"| 15
|align="right"| 0.30
|align="right"| 63
|align="right"| 4.2
|-
|-
| isempty (x)
| isnan (x)
|-
| disjoint (a, b)
| emptyintersect (a, b)
|-
| hdist (a, b)
| qdist (a, b)
|-
| disp (x)
| disp2str (x)
|-
| infsup (s)
| str2intval (s)
|-
| isa (x, "infsup")
| isintval (x)
|}
|}


''Why is the interval package accurate?''
== Developer Information ==
The GNU Octave built-in floating-point routines are not useful for interval arithmetic: Their results depend on hardware, system libraries and compilation options.  
=== Source Code Repository ===
The interval package handles all arithmetic functions with the help of the [http://www.mpfr.org/ GNU MPFR library]. With MPFR it is possible to compute system-independent, valid and tight enclosures of the correct results for most functions. However, it should be noted that some reverse operations and matrix operations do not exists in GNU MPFR and therefore cannot be computed with the same accuracy.
https://sourceforge.net/p/octave/interval/ci/default/tree/


== Installation ==
=== Dependencies ===
The interval package is available at Octave Forge [http://octave.sourceforge.net/interval/] and can be installed from within GNU Octave (version ≥ 3.8.2). During installation parts of the package are compiled for the target system, which requires the GNU MPFR development libraries (version ≥ 3.1.0) to be installed.
  apt-get install liboctave-dev mercurial make automake libmpfr-dev
  <span style="opacity:.5">octave:1> </span>pkg install -forge interval
<span style="opacity:.5">octave:2> </span>pkg load interval


The ''development version'' may be obtained from its mercurial repository. For convenience a Makefile target allows running the package from source.
=== Build ===
hg clone http://hg.code.sf.net/p/octave/interval octave-interval
The repository contains a Makefile which controls the build process. Some common targets are:
cd octave-interval; make run
* <code>make release</code> Create a release tarball and the HTML documentation for [[Octave Forge]] (takes a while).
* <code>make check</code> Run the full test-suite to verify that code changes didn't break anything (takes a while).
* <code>make run</code> Quickly start Octave with minimal recompilation and functions loaded from the workspace (for interactive testing of code changes).


== Quick start introduction ==
'''Build dependencies'''
<code>apt-get install libmpfr-dev autoconf automake inkscape zopfli</code>


=== Input and output ===
=== Architecture ===
Before exercising interval arithmetic, interval objects must be created from non-interval data. There are interval constants <code>empty</code> and <code>entire</code> and the interval constructors <code>infsupdec</code> (create an interval from boundaries), <code>midrad</code> (create an interval from midpoint and radius) and <code>hull</code> (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.


{{Code|Create intervals for performing interval arithmetic|<syntaxhighlight lang="octave">
In a nutshell the package provides two new data types to users: bare intervals and decorated intervals. The data types are implemented as:
infsupdec (1) # [1]_com
* class <code>infsup</code> (bare interval) with attributes <code>inf</code> (lower interval boundary) and <code>sup</code> (upper interval boundary)
infsupdec (1, 2) # [1, 2]_com
* class <code>infsupdec</code> (decorated interval) which extends the former and adds attribute <code>dec</code> (interval decoration).
infsupdec ("3", "4") # [3, 4]_com
infsupdec ("1.1") # [1.0999999999999998, 1.1000000000000001]_com
infsupdec ("5.8e-17")
  # [5.799999999999999e-17, 5.800000000000001e-17]_com
midrad (12, 3) # [9, 15]_com
midrad ("4.2", "1e-7") # [4.199999899999999, 4.2000001000000005]_com
hull (3, 42, "19.3", "-2.3") # [-2.3000000000000003, +42]_trv
hull ("pi", "e") # [2.718281828459045, 3.1415926535897936]_trv
</syntaxhighlight>
}}


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</code> would be over 700 decimal places long! However, the default text representation is correct as it guarantees to contain the actual boundaries.
Almost all functions in the package are implemented as methods of these classes, e. g. <code>@infsup/sin</code> implements the sine function for bare intervals. Most code is kept in m-files. Arithmetic operations that require correctly-rounded results are implemented in oct-files (C++ code), these are used internally by the m-files of the package. The source code is organized as follows:


{{Warning|Decimal fractions as well as numbers of high magnitude (> 2<sup>53</sup>) should always be passed as a string to the constructor. Otherwise it is possible, that GNU Octave introduces conversion errors when the numeric literal is converted into floating-point format '''before''' it is passed to the constructor.}}
+- doc/                        – package manual
+- inst/
|   +- @infsup/
|  |  +- infsup.m            – class constructor for bare intervals
|  |  +- sin.m              – sine function for bare intervals (uses mpfr_function_d internally)
|  |  `- ...                – further functions on bare intervals
|  +- @infsupdec/
|  |  +- infsupdec.m        – class constructor for decorated intervals
|  |  +- sin.m              – sine function for decorated intervals (uses @infsup/sin internally)
|  |  `- ...                – further functions on decorated intervals
|  `- ...                    – a few global functions that don't operate on intervals
`- src/
    +- mpfr_function_d.cc      – computes various arithmetic functions correctly rounded (using MPFR)
    `- ...                    – other oct-file sources


{{Code|Beware of the conversion pitfall|<syntaxhighlight lang="octave">
=== Best practices ===
## The numeric constant “0.2” is an approximation of the
==== Parameter checking ====
## decimal number 0.2. An interval around this approximation
* All methods must check <code>nargin</code> and call <code>print_usage</code> if the number of parameters is wrong. This prevents simple errors by the user.
## will not contain the decimal number 0.2.
* Methods with more than 1 parameter must convert non-interval parameters to intervals using the class constructor. This allows the user to mix non-interval parameters with interval parameters and the function treats any inputs as intervals. Invalid values will be handled by the class constructors.
infsupdec (0.2) # [.20000000000000001, .20000000000000002]_com
if (not (isa (x, "infsup")))
## However, passing the decimal number 0.2 as a string
  x = infsup (x);
## to the interval constructor will create an interval which
endif
## actually encloses the decimal number.
if (not (isa (y, "infsup")))
infsupdec ("0.2") # [.19999999999999998, .20000000000000002]_com
  y = infsup (y);
</syntaxhighlight>
endif
}}


==== Interval vectors and matrices ====
if (not (isa (x, "infsupdec")))
Vectors and matrices of intervals can be created by passing numerical matrices, char vectors or cell arrays to the interval constructors. With cell arrays it is also possible to mix several types of boundaries.
  x = infsupdec (x);
endif
if (not (isa (y, "infsupdec")))
  y = infsupdec (y);
endif


Interval matrices behave like normal matrices in GNU Octave and can be used for broadcasting and vectorized function evaluation.
==== Use of Octave functions ====
Octave functions may be used as long as they don't introduce arithmetic errors. For example, the ceil function can be used safely since it is exact on binary64 numbers.
function x = ceil (x)
  ... parameter checking ...
  x.inf = ceil (x.inf);
  x.sup = ceil (x.sup);
endfunction


{{Code|Create interval matrices|<syntaxhighlight lang="octave">
If Octave functions would introduce arithmetic/rounding errors, there are interfaces to MPFR (<code>mpfr_function_d</code>) and crlibm (<code>crlibm_function</code>), which can produce guaranteed boundaries.
M = infsup (magic (3))
  # [8]  [1]  [6]
  # [3]  [5]  [7]
  # [4]  [9]  [2]
infsup (magic (3), magic (3) + 1)
  # [8, 9]    [1, 2]  [6, 7]
  # [3, 4]    [5, 6]  [7, 8]
  # [4, 5]  [9, 10]  [2, 3]
infsupdec (["0.1"; "0.2"; "0.3"; "0.4"; "0.5"])
  # [.09999999999999999, .10000000000000001]_com
  # [.19999999999999998, .20000000000000002]_com
  # [.29999999999999998, .30000000000000005]_com
  # [.39999999999999996, .40000000000000003]_com
  #                                    [.5]_com
infsup ({1, eps; "4/7", "pi"}, {2, 1; "e", "0xff"})
  #                                  [1, 2]  [2.220446049250313e-16, 1]
  # [.5714285714285713, 2.7182818284590456]    [3.1415926535897931, 255]
</syntaxhighlight>
}}


=== Arithmetic operations ===
==== Vectorization & Indexing ====
The interval packages comprises many interval arithmetic operations. A complete list can be found in its [http://octave.sourceforge.net/interval/overview.html function reference]. Function names match GNU Octave standard functions where applicable and follow recommendations by IEEE 1788 otherwise, cf. [[#IEEE_1788_index|IEEE 1788 index]].
All functions should be implemented using vectorization and indexing. This is very important for performance on large data. For example, consider the plus function. It computes lower and upper boundaries of the result (x.inf, y.inf, x.sup, y.sup may be vectors or matrices) and then uses an indexing expression to adjust values where empty intervals would have produces problematic values.
function x = plus (x, y)
  ... parameter checking ...
  l = mpfr_function_d ('plus', -inf, x.inf, y.inf);
  u = mpfr_function_d ('plus', +inf, x.sup, y.sup);
  emptyresult = isempty (x) | isempty (y);
  l(emptyresult) = inf;
  u(emptyresult) = -inf;
  …
endfunction


Arithmetic functions in a set-based interval arithmetic follow 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.
== VERSOFT ==
The [http://uivtx.cs.cas.cz/~rohn/matlab/ VERSOFT] software package (by Jiří Rohn) has been released under a free software license (Expat license) and algorithms may be migrated into the interval package.


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 help command.
{|
 
! Function
{{Code|Examples of using interval arithmetic functions|<syntaxhighlight lang="octave">
! Status
sin (infsupdec (0.5)) # [.47942553860420294, .47942553860420301]_com
! Information
pow (infsupdec (2), infsupdec (3, 4)) # [8, 16]_com
|-
atan2 (infsupdec (1), infsupdec (1))
|colspan="3"|Real (or complex) data only: Matrices
  # [.7853981633974482, .7853981633974484]_com
|-
midrad (magic (3), 0.5) * pascal (3)
|verbasis
  # [13.5, 16.5]_com  [25, 31]_com  [42, 52]_com
|style="color:red"| trapped
  # [13.5, 16.5]_com  [31, 37]_com  [55, 65]_com
| depends on <code style="color:red">verfullcolrank</code>
  # [13.5, 16.5]_com  [25, 31]_com  [38, 48]_com
|-
</syntaxhighlight>
|vercondnum
}}
|style="color:red"| trapped
 
| depends on <code style="color:red">versingval</code>
=== Numerical operations ===
|-
Some operations on intervals do not return an interval enclosure, but a single number (in double-precision). Most important are <code>inf</code> and <code>sup</code>, which return the lower and upper interval boundaries.
|verdet
 
|style="color:red"| trapped
More such operations are <code>mid</code> (approximation of the interval's midpoint), <code>wid</code> (approximation of the interval's width), <code>rad</code> (approximation of the interval's radius), <code>mag</code> (interval's magnitude) and <code>mig</code> (interval's mignitude).
| depends on <code>vereig</code>
 
|-
=== Boolean operations ===
|verdistsing
Interval comparison operations produce boolean results. While some comparisons are especially for intervals (subset, interior, ismember, isempty, disjoint, …) others are extensions of simple numerical comparison. For example, the less-or-equal comparison is mathematically defined as ∀<sub>''a''</sub> ∃<sub>''b''</sub> ''a'' ≤ ''b'' ∧ ∀<sub>''b''</sub> ∃<sub>''a''</sub> ''a'' ≤ ''b''.
|style="color:red"| trapped
 
| depends on <code style="color:red">versingval</code>
<span style="opacity:.5">octave:1> </span>infsup (1, 3) <= infsup (2, 4)
|-
ans =  1
|verfullcolrank
 
|style="color:red"| trapped
=== Matrix operations ===
| depends on <code>verpinv</code>
Above mentioned operations can also be applied element-wise to interval vectors and matrices. Many operations use [http://www.gnu.org/software/octave/doc/interpreter/Vectorization-and-Faster-Code-Execution.html#Vectorization-and-Faster-Code-Execution vectorization techniques].
|-
 
|vernorm2
In addition, there are matrix operations on interval matrices. 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.
|style="color:red"| trapped
 
| depends on <code style="color:red">versingval</code>
{{Code|Examples of using interval matrix functions|<syntaxhighlight lang="octave">
|-
A = infsup ([1, 2, 3; 4, 0, 0; 0, 0, 1]); A (2, 3) = "[0, 6]"
|vernull (experimental)
  # [1]  [2]      [3]
| unknown
  # [4]  [0]  [0, 6]
| depends on <code style="color:red">verlsq</code>; todo: compare with local function inside <code style="color:green">verintlinineqs</code>
  # [0]  [0]      [1]
|-
B = inv (A)
|verorth
  #  [0]    [.25]      [-1.5, 0]
|style="color:red"| trapped
  # [.5]  [-.125]  [-1.5, -.75]
| depends on <code style="color:red">verbasis</code> and <code style="color:red">verthinsvd</code>
  #  [0]      [0]            [1]
|-
A * B
|verorthproj
  # [1]  [0]  [-1.5, +1.5]
|style="color:red"| trapped
  # [0]  [1]      [-6, +6]
| depends on <code style="color:red">verpinv</code> and <code style="color:red">verfullcolrank</code>
  # [0]  [0]            [1]
|-
 
|verpd
A = infsup (magic (3))
|style="color:red"| trapped
  # [8]  [1]  [6]
| depends on <code>isspd</code> (by Rump, to be checked) and <code style="color:red">vereig</code>
  # [3]  [5]  [7]
|-
  # [4]  [9]  [2]
|verpinv
c = A \ [3; 4; 5]
|style="color:red"| trapped
  # [.18333333333333326, .18333333333333349]
| dependency <code>verifylss</code> is implemented as <code>mldivide</code>; depends on <code style="color:red">verthinsvd</code>
  # [.43333333333333329, .43333333333333341]
|-
  # [.18333333333333315, .18333333333333338]
|verpmat
A * c
|style="color:red"| trapped
  # [2.9999999999999982, 3.0000000000000018]
| depends on <code style="color:red">verregsing</code>
  # [3.9999999999999982, 4.0000000000000018]
|-
  # [4.9999999999999982, 5.0000000000000018]
|verrank
</syntaxhighlight>
|style="color:red"| trapped
}}
| depends on <code style="color:red">versingval</code> and <code style="color:red">verbasis</code>
 
|-
==== Notes on linear systems ====
|verrref
A system of linear equations in the form A''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:
|style="color:red"| trapped
* 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.
| depends on <code style="color:red">verfullcolrank</code> and <code style="color:red">verpinv</code>
* If the interval result is empty in at least one of its coordinates, the linear system is guaranteed to be underdetermined 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.
|-
* 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.
|colspan="3"|Real (or complex) data only: Matrices: Eigenvalues and singular values
 
|-
However, solving linear systems with interval arithmetic can produce useful results in many cases and automatically carries a guaranty for error boundaries. Additionally, it can give better information than the floating-point variants for some cases.
|vereig
 
|style="color:red"| trapped
{{Code|Standard floating point arithmetic versus interval arithmetic on ill-conditioned linear systems|<syntaxhighlight lang="octave">
| depends on proprietary <code>verifyeig</code> function from INTLAB, depends on complex interval arithmetic
A = [1, 0; 2, 0];
|-
## This linear system has no solutions
|<s>vereigback</s>
A \ [3; 0]
|style="color:green"| free, migrated (for real eigenvalues)
  # warning: matrix singular to machine precision, rcond = 0
| dependency <code>norm</code> is already implemented
  # 0.60000
|-
  # 0.00000
|verspectrad
## This linear system has many solutions
|style="color:red"| trapped
A \ [4; 8]
| main part implemented in <code>vereig</code>
  # 4
|-
  # 0
|colspan="3"|Real (or complex) data only: Matrices: Decompositions
 
|-
## The empty interval vector proves that there is no solution
|verpoldec
infsup (A) \ [3; 0]
|style="color:red"| trapped
  # [Empty]
| depends on <code style="color:red">verthinsvd</code>
  # [Empty]
|-
## The unbound interval vector indicates that there may be many solutions
|verrankdec
infsup (A) \ [4; 8]
|style="color:red"| trapped
  #      [4]
| depends on <code style="color:red">verfullcolrank</code> and <code style="color:red">verpinv</code>
  # [Entire]
|-
</syntaxhighlight>
|verspectdec
}}
|style="color:red"| trapped
 
| main part implemented in <code>vereig</code>
== Advanced topics ==
|-
 
|verthinsvd
=== Error handling ===
|style="color:red"| trapped
 
| implemented in <code>vereig</code>
Due to the nature of set-based interval arithmetic, one should not observe errors (in the sense of raised GNU Octave error messages) during computation unless operations are evaluated for incompatible data types. Arithmetic operations which are not defined for (parts of) their input, simply ignore anything that is outside of their domain.
|-
 
|colspan="3"|Real (or complex) data only: Matrix functions
However, the interval constructors can produce errors depending on the input. The <code>infsup</code> constructor will fail if the interval boundaries are invalid. Contrariwise, the (preferred) <code>infsupdec</code>, <code>midrad</code> and <code>hull</code> constructors will only issue a warning and return a [NaI] object, which will propagate and survive through computations. NaI stands for “not an interval”.
|-
 
|vermatfun
{{Code|Effects of set-based interval arithmetic on partial functions and the NaI object|<syntaxhighlight lang="octave">
|style="color:red"| trapped
## Evaluation of a function outside of its domain returns an empty interval
| main part implemented in <code>vereig</code>
infsupdec (2) / 0 # [Empty]_trv
|-
infsupdec (0) ^ infsupdec (0) # [Empty]_trv
|colspan="3"|Real data only: Linear systems (rectangular)
 
|-
## Illegal interval construction creates a NaI
|<s>verlinineqnn</s>
infsupdec (3, 2) # [NaI]
|style="color:green"| free, migrated
## NaI even survives through computations
| use <code>glpk</code> as a replacement for <code>linprog</code>
ans + 1 # [NaI]
|-
</syntaxhighlight>
|verlinsys
}}
|style="color:red"| trapped
 
| dependency <code>verifylss</code> is implemented as <code>mldivide</code>; depends on <code style="color:red">verpinv</code>, <code style="color:red">verfullcolrank</code>, and <code style="color:red">verbasis</code>
=== Decorations ===
|-
The interval package provides a powerful decoration system for intervals, as specified by the IEEE standard for interval arithmetic. By default any interval carries a decoration, which collects additional information about the course of function evaluation on the interval data.
|verlsq
 
|style="color:red"| trapped
Only the (unfavored) <code>infsup</code> constructor creates bare, undecorated intervals and the <code>intervalpart</code> operation may be used to demote decorated intervals into bare, undecorated ones. It is highly recommended to always use the decorated interval arithmetic, which gives additional information about an interval result in exchange for a tiny overhead.
| depends on <code style="color:red">verpinv</code> and <code style="color:red">verfullcolrank</code>
 
|-
The following decorations are available:
|colspan="3"|Real data only: Optimization
 
|-
{| class="wikitable" style="margin: auto"
|verlcpall
!Decoration
|style="color:green"| free
!Bounded
| depends on <code>verabsvaleqnall</code>
!Continuous
|-
!Defined
|<s>verlinprog</s>
!Definition
|style="color:green"| free, migrated
| use <code>glpk</code> as a replacement for <code>linprog</code>; dependency <code>verifylss</code> is implemented as <code>mldivide</code>
|-
|verlinprogg
|style="color:red"| trapped
| depends on <code>verfullcolrank</code>
|-
|verquadprog
| unknown
| use <code>quadprog</code> from the optim package; use <code>glpk</code> as a replacement for <code>linprog</code>; dependency <code>verifylss</code> is implemented as <code>mldivide</code>; depends on <code>isspd</code> (by Rump, to be checked, algorithm in [http://www.ti3.tuhh.de/paper/rump/Ru06c.pdf])
|-
|colspan="3"|Real (or complex) data only: Polynomials
|-
|verroots
|style="color:red"| trapped
| main part implemented in <code>vereig</code>
|-
|colspan="3"|Interval (or real) data: Matrices
|-
|verhurwstab
|style="color:red"| trapped
| depends on <code style="color:red">verposdef</code>
|-
|verinverse
|style="color:green"| free
| depends on <code style="color:green">verintervalhull</code>, to be migrated
|-
|<s>verinvnonneg</s>
|style="color:green"| free, migrated
|-
|verposdef
|style="color:red"| trapped
| depends on <code>isspd</code> (by Rump, to be checked) and <code style="color:red">verregsing</code>
|-
|verregsing
|style="color:red"| trapped
| dependency <code>verifylss</code> is implemented as <code>mldivide</code>; depends on <code>isspd</code> (by Rump, to be checked) and <code>verintervalhull</code>; see also [http://uivtx.cs.cas.cz/~rohn/publist/singreg.pdf]
|-
|colspan="3"|Interval (or real) data: Matrices: Eigenvalues and singular values
|-
|-
| com<br/>(common)
|vereigsym
| style="text-align: center" |
|style="color:red"| trapped
| style="text-align: center" | ✓
| main part implemented in <code>vereig</code>, depends on <code style="color:red">verspectrad</code>
| style="text-align: center" | ✓
| '''''x''''' is a bounded, nonempty subset of Dom(''f''); ''f'' is continuous at each point of '''''x'''''; and the computed interval ''f''('''''x''''') is bounded
|-
|-
| dac<br/>(defined &amp; continuous)
|vereigval
|
|style="color:red"| trapped
| style="text-align: center" |
| depends on <code style="color:red">verregsing</code>
| style="text-align: center" | ✓
| '''''x''''' is a nonempty subset of Dom(''f''); and the restriction of ''f'' to '''''x''''' is continuous
|-
|-
| def<br/>(defined)
|<s>vereigvec</s>
|
|style="color:green"| free, migrated
|
| style="text-align: center" |
| '''''x''''' is a nonempty subset of Dom(''f'')
|-
|-
| trv<br/>(trivial)
|verperrvec
|
|style="color:green"| free
|
| the function is just a wrapper around <code style="color:green">vereigvec</code>?!?
|
| always true (so gives no information)
|-
|-
| ill<br/>(ill-formed)
|versingval
|
|style="color:red"| trapped
|
| depends on <code style="color:red">vereigsym</code>
|
| Not an interval, at least one interval constructor failed during the course of computation
|}
 
The decoration information is especially useful after a very long and complicated function evaluation. For example, when the “def” decoration survives until the final result, it is proven that the overall function is actually defined for all values covered by the input intervals.
 
{{Code|Examples of using the decoration system|<syntaxhighlight lang="octave">
x = infsupdec (3, 4) # [3, 4]_com
y = x - 3.5 # [-.5, +.5]_com
## The square root function ignores any negative part of the input,
## but the decoration indicates whether this has or has not happened.
sqrt (x) # [1.7320508075688771, 2]_com
sqrt (y) # [0, .7071067811865476]_trv
</syntaxhighlight>
}}
 
=== Specialized interval constructors ===
Above mentioned interval construction with decimal numbers or numeric data is straightforward. Beyond that, there are more ways to define intervals or interval boundaries.
* Hexadecimal-floating-constant form: Each interval boundary may be defined by a hexadecimal number (optionally containing a point) and an exponent field with an integral power of two as defined by the C99 standard ([http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf ISO/IEC9899, N1256, §6.4.4.2]). This can be used as a convenient way to define interval boundaries in double-precision, because the hexadecimal form is much shorter than the decimal representation of many numbers.
* Rational literals: Each interval boundary may be defined as a fraction of two decimal numbers. This is especially useful if interval boundaries shall be tightest enclosures of fractions, that would be hard to write down as a decimal number.
* Uncertain form: The interval as a whole can be defined by a midpoint or upper/lower boundary and an integral number of [http://en.wikipedia.org/wiki/Unit_in_the_last_place “units in last place” (ULPs)] as an uncertainty. The format is <code>''m''?''ruE''</code>, where
** <code>''m ''</code> is a mantissa in decimal,
** <code>''r ''</code> is either empty (which means ½ ULP) or is a non-negative decimal integral ULP count or is the <code>?</code> character (for unbounded intervals),
** <code>''u ''</code> is either empty (symmetrical uncertainty of ''r'' ULPs in both directions) or is either <code>u</code> (up) or <code>d</code> (down),
** <code>''E ''</code> is either empty or an exponent field comprising the character <code>e</code> followed by a decimal integer exponent (base 10).
 
{{Code|Examples of different formats during interval construction|<syntaxhighlight lang="octave">
infsup ("0x1.999999999999Ap-4") # hex-form
  # [.1, .10000000000000001]
infsup ("1/3", "7/9") # rational form
  # [.33333333333333331, .7777777777777778]
infsup ("121.2?") # uncertain form
  # [121.14999999999999, 121.25]
infsup ("5?32e2") # uncertain form with ulp count
  # [-2700, +3700]
infsup ("-42??u") # unbound uncertain form
  # [-42, +Inf]
</syntaxhighlight>
}}
 
=== Reverse arithmetic operations ===
[[File:Reverse-power-functions.png|400px|thumb|right|Reverse power operations. A relevant subset of the function's domain is outlined and hatched. In this example we use ''x''<sup>''y''</sup> ∈ [2, 3].]]
 
Some arithmetic functions also provide reverse mode operations. That is inverse functions with interval constraints. For example the <code>sqrrev</code> can compute the inverse of the <code>sqr</code> function on intervals. The syntax is <code>sqrrev (C, X)</code> and will compute the enclosure of all numbers ''x'' ∈ X that fulfill the constraint ''x''² ∈ C.
 
In the following example, we compute the constraints for base and exponent of the power function <code>pow</code> as shown in the figure.
<span style="opacity:.5">octave:1> </span>x = powrev1 (infsup ("[1.1, 1.45]"), infsup (2, 3))
x ⊂ [1.6128979635153646, 2.7148547265657915]
<span style="opacity:.5">octave:2> </span>y = powrev2 (infsup ("[2.14, 2.5]"), infsup (2, 3))
y ⊂ [.7564707973660299, 1.4440113978403284]
 
=== Tips & Tricks ===
For convenience it is possible to implicitly call the interval constructor during all interval operations if at least one input already is an interval object.
 
<span style="opacity:.5">octave:1> </span>infsupdec ("17.7") + 1
ans ⊂ [18.699999999999999, 18.700000000000003]_com
<span style="opacity:.5">octave:2> </span>ans + "[0, 2]"
ans ⊂ [18.699999999999999, 20.700000000000003]_com
 
Interval functions with only one argument can be called by using property syntax, e. g. <code>x.inf</code>, <code>x.sup</code> or even <code>x.sqr</code>.
 
When matrices are resized using subscripted assignment, any implicit new matrix elements will carry an empty interval.
<span style="opacity:.5">octave:1> </span>M = infsup (magic (3)); M (4, 4) = 42
M = 4×4 interval matrix
        [8]      [1]      [6]  [Empty]
        [3]      [5]      [7]  [Empty]
        [4]      [9]      [2]  [Empty]
    [Empty]  [Empty]  [Empty]      [42]
 
Whilst most functions (<code>size</code>, <code>isvector</code>, <code>ismatrix</code>, …) work as expected on interval data types, the function <code>isempty</code> is evaluated element-wise and checks if an interval equals the empty set.
<span style="opacity:.5">octave:1> </span>builtin ("isempty", empty ()), isempty (empty ())
ans = 0
ans =  1
 
== IEEE 1788 index ==
 
{| class="wikitable" style="margin: auto; min-width: 50%"
|+ In terms of a better integration into the GNU Octave language, several operations use a function name which is different from the name proposed in the standard document.
!IEEE 1788
!GNU Octave
|-
|-
| newDec
|colspan="3"|Interval (or real) data: Matrices: Decompositions
| infsupdec [http://octave.sourceforge.net/interval/function/@infsupdec/infsupdec.html]
|-
|-
| setDec
|verqr (experimental)
| infsupdec
|style="color:green"| free
| <code>qr</code> has already been implemented using the Gram-Schmidt process, which seems to be more accurate and faster than the Cholsky decomposition or Householder reflections used in verqr. No migration needed.
|-
|-
| numsToInterval
|<s>verchol (experimental)</s>
| infsup [http://octave.sourceforge.net/interval/function/@infsup/infsup.html]
|style="color:green"| free, migrated
| migrated version has been named after the standard Octave function <code>chol</code>
|-
|-
| textToInterval
|colspan="3"|Interval (or real) data: Linear systems (square)
| infsup ''or''<br/>infsupdec
|-
|-
| exp10
|verenclinthull
| pow10 [http://octave.sourceforge.net/interval/function/@infsup/pow10.html]
|style="color:green"| free
| to be migrated
|-
|-
| exp2
|verhullparam
| pow2 [http://octave.sourceforge.net/interval/function/@infsup/pow2.html]
|style="color:green"| free
| depends on <code>verintervalhull</code>, to be migrated
|-
|-
| recip
|verhullpatt
| inv [http://octave.sourceforge.net/interval/function/@infsup/inv.html]
|style="color:green"| free
| depends on <code>verhullparam</code>, to be migrated
|-
|-
| sqrt
|verintervalhull
| realsqrt [http://octave.sourceforge.net/interval/function/@infsup/realsqrt.html]
|style="color:green"| free
| to be migrated
|-
|-
| rootn
|colspan="3"|Interval (or real) data: Linear systems (rectangular)
| nthroot [http://octave.sourceforge.net/interval/function/@infsup/nthroot.html]
|-
|-
| logp1
|verintlinineqs
| log1p [http://octave.sourceforge.net/interval/function/@infsup/log1p.html]
|style="color:green"| free
| depends on <code style="color:green">verlinineqnn</code>
|-
|-
| roundTiesToAway
|veroettprag
| round [http://octave.sourceforge.net/interval/function/@infsup/round.html]
|style="color:green"| free
|-
|-
| roundTiesToEven
|vertolsol
| roundb [http://octave.sourceforge.net/interval/function/@infsup/roundb.html]
|style="color:green"| free
| depends on <code style="color:green">verlinineqnn</code>
|-
|-
| trunc
|colspan="3"|Interval (or real) data: Matrix equations (rectangular)
| fix [http://octave.sourceforge.net/interval/function/@infsup/fix.html]
|-
|-
| sum
|vermatreqn
| on intervals: sum [http://octave.sourceforge.net/interval/function/@infsup/sum.html]<br/>on numbers: mpfr_vector_sum_d [http://octave.sourceforge.net/interval/function/mpfr_vector_sum_d.html]
|style="color:green"| free
|-
|-
| dot
|colspan="3"|Real data only: Uncommon problems
| on intervals: dot [http://octave.sourceforge.net/interval/function/@infsup/dot.html]<br/>on numbers: mpfr_vector_dot_d [http://octave.sourceforge.net/interval/function/mpfr_vector_dot_d.html]
|-
|-
| sumAbs
| plusminusoneset
| on intervals: sumabs [http://octave.sourceforge.net/interval/function/@infsup/sumabs.html]<br/>on numbers: use mpfr_vector_sum_d (''roundingMode'', abs (''x''))
|style="color:green"| free
|-
|-
| sumSquare
| verabsvaleqn
| on intervals: sumsq [http://octave.sourceforge.net/interval/function/@infsup/sumsq.html]<br>on numbers: use mpfr_vector_dot_d (''roundingMode'', abs (''x''), abs (''x''))
|style="color:green"| free
| to be migrated
|-
|-
| intersection
| verabsvaleqnall
| and (<code>&</code>[http://octave.sourceforge.net/interval/function/@infsup/and.html]
|style="color:green"| free
| depends on <code>verabsvaleqn</code>, see also [http://uivtx.cs.cas.cz/~rohn/publist/absvaleqnall.pdf], to be migrated
|-
|-
| convexHull
| verbasintnpprob
| or (<code>&#x007C;</code>) [http://octave.sourceforge.net/interval/function/@infsup/or.html]
|style="color:red"| trapped
| depends on <code style="color:red">verregsing</code>
|-
|-
| mulRevToPair
| mulrev [http://octave.sourceforge.net/interval/function/@infsup/mulrev.html] ''with two output parameters''
|}
|}


== Compatibility ==
The interval package's main goal is to be compliant with IEEE 1788, so it is compatible with other standard-conforming implementations (on the set of operations described by the standard document).
This interval package is ''not'' meant to be a replacement for INTLAB and any compatibility with it is pure coincidence. Since both are compatible with GNU Octave, they happen to agree on many function names and programs written for INTLAB may possibly run with this interval package as well. Some fundamental differences that I am currently aware of:
* INTLAB is non-free software, it grants none of the [http://www.gnu.org/philosophy/free-sw.html four essential freedoms] of free software
* INTLAB is not conforming to IEEE 1788 and the parsing of intervals from strings uses a different format—especially for the uncertain form
* INTLAB supports intervals with complex numbers and sparse interval matrices, but no empty intervals
* INTLAB uses inferior accuracy for most arithmetic operations, because it focuses on speed
* Basic operations can be found in both packages, but the availability of special functions depends
{{Code|In GNU Octave the interval package can also be run alongside INTLAB.|<syntaxhighlight lang="octave">
# INTLAB intervals
A1 = infsup (2, 3);
B1 = hull (-4, A1);
C1 = midrad (0, 2);
# Interval package intervals
pkg load interval
A2 = infsup (2, 3);
B2 = hull (-4, A2);
C2 = midrad (0, 2);
pkg unload interval
# Computation with INTLAB
A1 + B1 * C1
# Computation without INTLAB
A2 + B2 * C2
</syntaxhighlight>
}}
== Related work ==
For C++ there is an open source interval library [https://github.com/nehmeier/libieeep1788/ libieeep1788] by Marco Nehmeier (member of IEEE P1788). It aims to be standard compliant with IEEE 1788 and is designed in a modular way, supporting several interval data types and different flavors of interval arithmetic [http://www.youtube.com/watch?v=GOa9aWAZO_Q]. The GNU Octave interval package shares several unit tests with libieeep1788.
For C++, Pascal and Fortran there is a free interval library [http://www2.math.uni-wuppertal.de/~xsc/xsc-sprachen.html XSC]. It is not standard compliant with IEEE 1788. Some parts of the GNU Octave interval package have been derived from C-XSC.
For Java there is a library [https://java.net/projects/jinterval/ jinterval] by Dmitry Nadezhin (member of IEEE P1788). It aims to be standard compliant with IEEE 1788, but is not complete yet.
For MATLAB there is a popular, nonfree interval arithmetic toolbox [http://www.ti3.tu-harburg.de/rump/intlab/ INTLAB] by Siegfried Rump. It had been free of charge for academic use in the past, but no longer is. Its origin dates back to 1999, so it is well tested and comprises a lot of functionality, especially for vector / matrix operations. INTLAB is compatible with GNU Octave since Version 9 [http://www.ti3.tuhh.de/rump/intlab/Octave/octave.html].


[[Category:Octave-Forge]]
[[Category:Octave Forge]][[Category:Packages]]

Revision as of 23:29, 12 March 2019

The GNU Octave interval package for real-valued interval arithmetic.

  • Intervals are closed, connected subsets of the real numbers. Intervals may be unbound (in either or both directions) or empty. In special cases +inf and -inf are used to denote boundaries of unbound intervals, but any member of the interval is a finite real number.
  • Classical functions are extended to interval functions as follows: The result of function f evaluated on interval x is an interval enclosure of all possible values of f over x where the function is defined. Most interval arithmetic functions in this package manage to produce a very accurate such enclosure.
  • 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].
Example: Plotting the interval enclosure of a function

Distribution

Third-party

Development status

  • Completeness
    • All required functions from IEEE Std 1788-2015, IEEE standard for interval arithmetic, are implemented. The standard was approved by IEEE-SA on June 11, 2015. It will remain active for ten years. The standard was approved by ANSI in 2016.
    • Also, the minimalistic standard IEEE Std 1788.1-2017, IEEE standard for interval arithmetic (simplified) is fully implemented. The standard was approved by IEEE-SA on December 6, 2017 (and published in January 2018).
    • In addition there are functions for interval matrix arithmetic, N-dimensional interval arrays, plotting, and solvers.
  • Quality
    • Most arithmetic operations produce tight, correctly-rounded results. That is, the smallest possible interval with double-precision (binary64) endpoints, which encloses the exact result.
    • Includes large test suite for arithmetic functions
    • For open bugs please refer to the bug tracker.
  • Performance
    • All elementary functions have been vectorized and run fast on large input data.
    • Arithmetic is performed with the GNU MPFR library internally. Where possible, the optimized CRlibm library is used.
  • Portability
    • Runs in GNU Octave ≥ 3.8.2
    • Known to run under GNU/Linux, Microsoft Windows, macOS, and FreeBSD

Project ideas (TODOs)

  • To be considered in the future: Algorithms can be migrated from the C-XSC Toolbox (C++ code) from [1] (nlinsys.cpp and cpzero.cpp), however these would need gradient arithmetic and complex arithmetic.
  • Interval version of interp1
  • Extend subsasgn to allow direct manipulation of inf and sup (and dec) properties.
>> A = infsup ("[2, 4]");
>> A.inf = infsup ("[1, 3]")
A = [1, 4]
>> A.inf = 5
A = [Empty]
  • While at it, also allow multiple subscripts in subsasgn
>> A(:)(2:4)(2) = 42; # equivalent to A(3) = 42
>> A.inf(3) = 42; # also  A(3).inf = 42
>> A.inf.inf = 42 # should produce error?
>> A.inf.sup = 42 # should produce error?
  • Tight Enclosure of Matrix Multiplication with Level 3 BLAS [2] [3]
  • Verified Convex Hull for Inexact Data [4] [5]
  • Implement user-controllable output from the interval standard (e. g. via printf functions):
a) It should be possible to specify the preferred overall field width (the length of s).
b) It should be possible to specify how Empty, Entire and NaI are output,
   e.g., whether lower or upper case, and whether Entire becomes [Entire] or [-Inf, Inf].
c) For l and u, it should be possible to specify the field width,
   and the number of digits after the point or the number of significant digits.
   (partly this is already implemented by output_precision (...) / `format long` / `format short`)
d) It should be possible to output the bounds of an interval without punctuation,
   e.g., 1.234 2.345 instead of [1.234, 2.345]. For instance, this might be a
   convenient way to write intervals to a file for use by another application.

Compatibility

The interval package's main goal is to be compliant with IEEE Std 1788-2015, so it is compatible with other standard-conforming implementations (on the set of operations described by the standard document). Other implementations, which are known to aim for standard conformance are:

Octave Forge simp package

In 2008/2009 there was a Single Interval Mathematics Package (SIMP) for Octave, which has eventually become unmaintained at Octave Forge.

The simp package contains a few basic interval arithmetic operations on scalar or vector intervals. It does not consider inaccurate built-in arithmetic functions, round-off, conversion and representational errors. As a result its syntax is very easy, but the arithmetic fails to produce guaranteed enclosures.

It is recommended to use the interval package as a replacement for simp. However, function names and interval constructors are not compatible between the packages.

INTLAB

This interval package is not meant to be a replacement for INTLAB and any compatibility with it is pure coincidence. Since both are compatible with GNU Octave, they happen to agree on many function names and programs written for INTLAB may possibly run with this interval package as well. Some fundamental differences that I am currently aware of:

  • INTLAB is non-free software, it grants none of the four essential freedoms of free software
  • INTLAB is not conforming to IEEE Std 1788-2015 and the parsing of intervals from strings uses a different format—especially for the uncertain form
  • INTLAB supports intervals with complex numbers and sparse interval matrices, but no empty intervals
  • INTLAB uses inferior accuracy for most arithmetic operations, because it focuses on speed
  • Basic operations can be found in both packages, but the availability of special functions depends


Code: Computation with this interval package
pkg load interval
A1 = infsup (2, 3);
B1 = hull (-4, A2);
C1 = midrad (0, 2);

A1 + B1 * C1
Code: Computation with INTLAB
startintlab
A2 = infsup (2, 3);
B2 = hull (-4, A2);
C2 = midrad (0, 2);

A2 + B2 * C2

Known differences

Simple programs written for INTLAB should run without modification with this interval package. The following table lists common functions that use a different name in INTLAB.

interval package INTLAB
infsup (x) intval (x)
wid (x) diam (x)
subset (a, b) in (a, b)
interior (a, b) in0 (a, b)
isempty (x) isnan (x)
disjoint (a, b) emptyintersect (a, b)
hdist (a, b) qdist (a, b)
disp (x) disp2str (x)
infsup (s) str2intval (s)
isa (x, "infsup") isintval (x)

Developer Information

Source Code Repository

https://sourceforge.net/p/octave/interval/ci/default/tree/

Dependencies

apt-get install liboctave-dev mercurial make automake libmpfr-dev

Build

The repository contains a Makefile which controls the build process. Some common targets are:

  • make release Create a release tarball and the HTML documentation for Octave Forge (takes a while).
  • make check Run the full test-suite to verify that code changes didn't break anything (takes a while).
  • make run Quickly start Octave with minimal recompilation and functions loaded from the workspace (for interactive testing of code changes).

Build dependencies apt-get install libmpfr-dev autoconf automake inkscape zopfli

Architecture

In a nutshell the package provides two new data types to users: bare intervals and decorated intervals. The data types are implemented as:

  • class infsup (bare interval) with attributes inf (lower interval boundary) and sup (upper interval boundary)
  • class infsupdec (decorated interval) which extends the former and adds attribute dec (interval decoration).

Almost all functions in the package are implemented as methods of these classes, e. g. @infsup/sin implements the sine function for bare intervals. Most code is kept in m-files. Arithmetic operations that require correctly-rounded results are implemented in oct-files (C++ code), these are used internally by the m-files of the package. The source code is organized as follows:

+- doc/                        – package manual
+- inst/
|   +- @infsup/
|   |   +- infsup.m            – class constructor for bare intervals
|   |   +- sin.m               – sine function for bare intervals (uses mpfr_function_d internally)
|   |   `- ...                 – further functions on bare intervals
|   +- @infsupdec/
|   |   +- infsupdec.m         – class constructor for decorated intervals
|   |   +- sin.m               – sine function for decorated intervals (uses @infsup/sin internally)
|   |   `- ...                 – further functions on decorated intervals
|   `- ...                     – a few global functions that don't operate on intervals
`- src/
    +- mpfr_function_d.cc      – computes various arithmetic functions correctly rounded (using MPFR)
    `- ...                     – other oct-file sources

Best practices

Parameter checking

  • All methods must check nargin and call print_usage if the number of parameters is wrong. This prevents simple errors by the user.
  • Methods with more than 1 parameter must convert non-interval parameters to intervals using the class constructor. This allows the user to mix non-interval parameters with interval parameters and the function treats any inputs as intervals. Invalid values will be handled by the class constructors.
if (not (isa (x, "infsup")))
  x = infsup (x);
endif
if (not (isa (y, "infsup")))
  y = infsup (y);
endif
if (not (isa (x, "infsupdec")))
  x = infsupdec (x);
endif
if (not (isa (y, "infsupdec")))
  y = infsupdec (y);
endif

Use of Octave functions

Octave functions may be used as long as they don't introduce arithmetic errors. For example, the ceil function can be used safely since it is exact on binary64 numbers.

function x = ceil (x)
  ... parameter checking ...
  x.inf = ceil (x.inf);
  x.sup = ceil (x.sup);
endfunction

If Octave functions would introduce arithmetic/rounding errors, there are interfaces to MPFR (mpfr_function_d) and crlibm (crlibm_function), which can produce guaranteed boundaries.

Vectorization & Indexing

All functions should be implemented using vectorization and indexing. This is very important for performance on large data. For example, consider the plus function. It computes lower and upper boundaries of the result (x.inf, y.inf, x.sup, y.sup may be vectors or matrices) and then uses an indexing expression to adjust values where empty intervals would have produces problematic values.

function x = plus (x, y)
  ... parameter checking ...
  l = mpfr_function_d ('plus', -inf, x.inf, y.inf);
  u = mpfr_function_d ('plus', +inf, x.sup, y.sup);

  emptyresult = isempty (x) | isempty (y);
  l(emptyresult) = inf;
  u(emptyresult) = -inf;
  …
endfunction

VERSOFT

The VERSOFT software package (by Jiří Rohn) has been released under a free software license (Expat license) and algorithms may be migrated into the interval package.

Function Status Information
Real (or complex) data only: Matrices
verbasis trapped depends on verfullcolrank
vercondnum trapped depends on versingval
verdet trapped depends on vereig
verdistsing trapped depends on versingval
verfullcolrank trapped depends on verpinv
vernorm2 trapped depends on versingval
vernull (experimental) unknown depends on verlsq; todo: compare with local function inside verintlinineqs
verorth trapped depends on verbasis and verthinsvd
verorthproj trapped depends on verpinv and verfullcolrank
verpd trapped depends on isspd (by Rump, to be checked) and vereig
verpinv trapped dependency verifylss is implemented as mldivide; depends on verthinsvd
verpmat trapped depends on verregsing
verrank trapped depends on versingval and verbasis
verrref trapped depends on verfullcolrank and verpinv
Real (or complex) data only: Matrices: Eigenvalues and singular values
vereig trapped depends on proprietary verifyeig function from INTLAB, depends on complex interval arithmetic
vereigback free, migrated (for real eigenvalues) dependency norm is already implemented
verspectrad trapped main part implemented in vereig
Real (or complex) data only: Matrices: Decompositions
verpoldec trapped depends on verthinsvd
verrankdec trapped depends on verfullcolrank and verpinv
verspectdec trapped main part implemented in vereig
verthinsvd trapped implemented in vereig
Real (or complex) data only: Matrix functions
vermatfun trapped main part implemented in vereig
Real data only: Linear systems (rectangular)
verlinineqnn free, migrated use glpk as a replacement for linprog
verlinsys trapped dependency verifylss is implemented as mldivide; depends on verpinv, verfullcolrank, and verbasis
verlsq trapped depends on verpinv and verfullcolrank
Real data only: Optimization
verlcpall free depends on verabsvaleqnall
verlinprog free, migrated use glpk as a replacement for linprog; dependency verifylss is implemented as mldivide
verlinprogg trapped depends on verfullcolrank
verquadprog unknown use quadprog from the optim package; use glpk as a replacement for linprog; dependency verifylss is implemented as mldivide; depends on isspd (by Rump, to be checked, algorithm in [6])
Real (or complex) data only: Polynomials
verroots trapped main part implemented in vereig
Interval (or real) data: Matrices
verhurwstab trapped depends on verposdef
verinverse free depends on verintervalhull, to be migrated
verinvnonneg free, migrated
verposdef trapped depends on isspd (by Rump, to be checked) and verregsing
verregsing trapped dependency verifylss is implemented as mldivide; depends on isspd (by Rump, to be checked) and verintervalhull; see also [7]
Interval (or real) data: Matrices: Eigenvalues and singular values
vereigsym trapped main part implemented in vereig, depends on verspectrad
vereigval trapped depends on verregsing
vereigvec free, migrated
verperrvec free the function is just a wrapper around vereigvec?!?
versingval trapped depends on vereigsym
Interval (or real) data: Matrices: Decompositions
verqr (experimental) free qr has already been implemented using the Gram-Schmidt process, which seems to be more accurate and faster than the Cholsky decomposition or Householder reflections used in verqr. No migration needed.
verchol (experimental) free, migrated migrated version has been named after the standard Octave function chol
Interval (or real) data: Linear systems (square)
verenclinthull free to be migrated
verhullparam free depends on verintervalhull, to be migrated
verhullpatt free depends on verhullparam, to be migrated
verintervalhull free to be migrated
Interval (or real) data: Linear systems (rectangular)
verintlinineqs free depends on verlinineqnn
veroettprag free
vertolsol free depends on verlinineqnn
Interval (or real) data: Matrix equations (rectangular)
vermatreqn free
Real data only: Uncommon problems
plusminusoneset free
verabsvaleqn free to be migrated
verabsvaleqnall free depends on verabsvaleqn, see also [8], to be migrated
verbasintnpprob trapped depends on verregsing