Interval Linear Solvers

Intel® MKL provides routines that can be used for solving systems of interval linear equations Ax = b with an interval matrix A =(aij) and interval right-hand side vector b =(bi).

?trtrs solves a triangular system of interval linear equations by backward substitution procedure.
call sitrtrs(uplo, trans, diag, n, nrhs, a, lda, b, ldb, info)
call ditrtrs(uplo, trans, diag, n, nrhs, a, lda, b, ldb, info)

?gegas solves a system of interval linear equations by interval Gauss method.
call sigegas(trans, n, nrhs, a, lda, b, ldb, info)
call digegas(trans, n, nrhs, a, lda, b, ldb, info)

?gehss solves a system of interval linear equations by interval Householder method.
call sigehss(trans, n, nrhs, a, lda, b, ldb, info)
call digehss(trans, n, nrhs, a, lda, b, ldb, info)

?gekws solves a system of interval linear equations by Krawczyk iteration method.
call sigekws(trans, n, a, lda, b, ldb, epsilon, info)
call digekws(trans, n, a, lda, b, ldb, epsilon, info)

?gegss solves a system of interval linear equations by interval Gauss-Seidel method.
call sigegss(trans, n, a, lda, b, ldb, encl, epsilon, info)
call digegss(trans, n, a, lda, b, ldb, encl, epsilon, info)

?gehbs solves a system of interval linear equations by Hansen-Bliek-Rohn procedure.
call sigehbs(trans, n, a, lda, b, ldb, info)
call digehbs(trans, n, a, lda, b, ldb, info)

?gepps solves a system of interval linear equations by a parameter partitioning method.
call sigepps(trans, n, a, lda, b, ldb, cmps, nits, epsilon, info)
call digepps(trans, n, a, lda, b, ldb, cmps, nits, epsilon, info)

?trtri computes inverse interval matrix to a triangular interval matrix.
call sitrtri(uplo, diag, n, a, lda, info)
call ditrtri(uplo, diag, n, a, lda, info)

?geszi computes inverse interval matrix to Schulz interval iterative procedure.
call sigeszi(n, a, lda, info)
call digeszi(n, a, lda, info)

?gerbr tests regularity of an interval matrix by Ris-Beeck and Rex-Rohn criteria.
call sigerbr(n, a, lda, reg, info)
call digerbr(n, a, lda, reg, info)

?gesvr tests regularity/singularity of an interval matrix by Rump and Rex-Rohn singular value criteria.
call sigesvr(n, a, lda, reg, info)
call digesvr(n, a, lda, reg, info)

?gemip performs midpoint-inverse preconditioning of an interval linear system.
call sigemip(n, a, lda, b, ldb, info)
call digemip(n, a, lda, b, ldb, info)

* Legal Information © 1999, 2002-2006, Intel Corporation