Next: Balancing, Previous: Tridiagonal Systems, Up: Linear Algebra [Index]
These functions calculate the in-place inverse of the triangular matrix T. When
the upper
prefix is specified, then the upper triangle of T is used, and when
the lower
prefix is specified, the lower triangle is used. If the unit
prefix is specified, then the diagonal elements of the matrix T are taken as
unity and are not referenced. Otherwise the diagonal elements are used in the inversion.
These functions estimate the reciprocal condition number, in the 1-norm, of the upper or lower N-by-N triangular matrix T. The reciprocal condition number is stored in rcond on output, and is defined by 1 / (||T||_1 \cdot ||T^{-1}||_1). Additional workspace of size 3 N is required in work.