NAG Library Chapter Introduction
F07 (lapacklin)
Linear Equations (LAPACK)
1
Scope of the Chapter
This chapter provides routines for the solution of systems of simultaneous linear equations, and associated computations. It provides routines for
- matrix factorizations;
- solution of linear equations;
- estimating matrix condition numbers;
- computing error bounds for the solution of linear equations;
- matrix inversion;
- computing scaling factors to equilibrate a matrix.
Routines are provided for both real and complex data.
For a general introduction to the solution of systems of linear equations, you should turn first to the
F04 Chapter Introduction. The decision trees, in
Section 4 in the F04 Chapter Introduction, direct you to the most appropriate routines in
Chapters F04 or
F07 for solving your particular problem. In particular,
Chapters F04 and
F07 contain
Black Box (or
driver) routines which enable some standard types of problem to be solved by a call to a single routine. Where possible, routines in
Chapter F04 call
Chapter F07 routines to perform the necessary computational tasks.
There are two types of driver routines in this chapter: simple drivers which just return the solution to the linear equations; and expert drivers which also return condition and error estimates and, in many cases, also allow equilibration. The simple drivers for real matrices have names of the form
F07_AF (D__SV)
and for complex matrices have names of the form
F07_NF (Z__SV).
The expert drivers for real matrices have names of the form
F07_BF (D__SVX)
and for complex matrices have names of the form
F07_PF (Z__SVX).
The routines in this chapter (
Chapter F07) handle only
dense and
band matrices (not matrices with more specialised structures, or general sparse matrices).
The routines in this chapter have all been derived from the LAPACK project (see
Anderson et al. (1999)). They have been designed to be efficient on a wide range of high-performance computers, without compromising efficiency on conventional serial machines.
2
Background to the Problems
This section is only a brief introduction to the numerical solution of systems of linear equations. Consult a standard textbook, for example
Golub and Van Loan (1996) for a more thorough discussion.
2.1
Notation
We use the standard notation for a system of simultaneous linear equations:
where
is the
coefficient matrix,
is the
right-hand side, and
is the
solution.
is assumed to be a square matrix of order
.
If there are several right-hand sides, we write
where the columns of
are the individual right-hand sides, and the columns of
are the corresponding solutions.
We also use the following notation, both here and in the routine documents:
|
a computed solution to , (which usually differs from the exact solution because of round-off error) |
|
the residual corresponding to the computed solution |
|
the -norm of the vector |
|
the -norm of the vector |
|
the -norm of the matrix |
|
the -norm of the matrix |
|
the vector with elements |
|
the matrix with elements |
Inequalities of the form are interpreted component-wise, that is for all .
2.2
Matrix Factorizations
If is upper or lower triangular, can be solved by a straightforward process of backward or forward substitution.
Otherwise, the solution is obtained after first factorizing , as follows.
General matrices (LU factorization with partial pivoting)
where
is a permutation matrix,
is lower-triangular with diagonal elements equal to
, and
is upper-triangular; the permutation matrix
(which represents row interchanges) is needed to ensure numerical stability.
Symmetric positive definite matrices (Cholesky factorization)
where
is upper triangular and
is lower triangular.
Symmetric positive semidefinite matrices (pivoted Cholesky factorization)
where
is a permutation matrix,
is upper triangular and
is lower triangular. The permutation matrix
(which represents row-and-column interchanges) is needed to ensure numerical stability and to reveal the numerical rank of
.
Symmetric indefinite matrices (Bunch–Kaufman factorization)
where
is a permutation matrix,
is upper triangular,
is lower triangular, and
is a block diagonal matrix with diagonal blocks of order
or
;
and
have diagonal elements equal to
, and have
by
unit matrices on the diagonal corresponding to the
by
blocks of
. The permutation matrix
(which represents symmetric row-and-column interchanges) and the
by
blocks in
are needed to ensure numerical stability. If
is in fact positive definite, no interchanges are needed and the factorization reduces to
or
with diagonal
, which is simply a variant form of the Cholesky factorization.
2.3
Solution of Systems of Equations
Given one of the above matrix factorizations, it is straightforward to compute a solution to by solving two subproblems, as shown below, first for and then for . Each subproblem consists essentially of solving a triangular system of equations by forward or backward substitution; the permutation matrix and the block diagonal matrix introduce only a little extra complication:
General matrices ( LU
factorization)
Symmetric positive definite matrices (Cholesky factorization)
Symmetric indefinite matrices (Bunch–Kaufman factorization)
2.4
Sensitivity and Error Analysis
2.4.1
Normwise error bounds
Frequently, in practical problems the data and are not known exactly, and it is then important to understand how uncertainties or perturbations in the data can affect the solution.
If
is the exact solution to
, and
is the exact solution to a perturbed problem
, then
where
is the
condition number of
defined by
In other words, relative errors in
or
may be amplified in
by a factor
.
Section 2.4.2 discusses how to compute or estimate
.
Similar considerations apply when we study the effects of rounding errors introduced by computation in finite precision. The effects of rounding errors can be shown to be equivalent to perturbations in the original data, such that and are usually at most , where is the machine precision and is an increasing function of which is seldom larger than (although in theory it can be as large as ).
In other words, the computed solution is the exact solution of a linear system which is close to the original system in a normwise sense.
2.4.2
Estimating condition numbers
The previous section has emphasized the usefulness of the quantity
in understanding the sensitivity of the solution of
. To compute the value of
from equation
(3) is more expensive than solving
in the first place. Hence it is standard practice to
estimate , in either the
-norm or the
-norm, by a method which only requires
additional operations, assuming that a suitable factorization of
is available.
The method used in this chapter is Higham's modification of Hager's method (see
Higham (1988)). It yields an estimate which is never larger than the true value, but which seldom falls short by more than a factor of
(although artificial examples can be constructed where it is much smaller). This is acceptable since it is the order of magnitude of
which is important rather than its precise value.
Because is infinite if is singular, the routines in this chapter actually return the reciprocal of .
2.4.3
Scaling and Equilibration
The condition of a matrix and hence the accuracy of the computed solution, may be improved by scaling; thus if
and
are diagonal matrices with positive diagonal elements, then
is the scaled matrix. A general matrix is said to be
equilibrated if it is scaled so that the lengths of its rows and columns have approximately equal magnitude. Similarly a general matrix is said to be
row-equilibrated (column-equilibrated) if it is scaled so that the lengths of its rows (columns) have approximately equal magnitude. Note that row scaling can affect the choice of pivot when partial pivoting is used in the factorization of
.
A symmetric or Hermitian positive definite matrix is said to be equilibrated if the diagonal elements are all approximately equal to unity.
For further information on scaling and equilibration see Section 3.5.2 of
Golub and Van Loan (1996), Section 7.2, 7.3 and 9.8 of
Higham (1988) and Section 5 of Chapter 4 of
Wilkinson (1965).
Routines are provided to return the scaling factors that equilibrate a matrix for general, general band, symmetric and Hermitian positive definite and symmetric and Hermitian positive definite band matrices.
2.4.4
Componentwise error bounds
A disadvantage of normwise error bounds is that they do not reflect any special structure in the data and – that is, a pattern of elements which are known to be zero – and the bounds are dominated by the largest elements in the data.
Componentwise error bounds overcome these limitations. Instead of the normwise relative error, we can bound the relative error in
each component of
and
:
where the
component-wise backward error bound is given by
Routines are provided in this chapter which compute
, and also compute a
forward error bound which is sometimes much sharper than the normwise bound given earlier:
Care is taken when computing this bound to allow for rounding errors in computing . The norm is estimated cheaply (without computing ) by a modification of the method used to estimate .
2.4.5
Iterative refinement of the solution
If
is an approximate computed solution to
, and
is the corresponding residual, then a procedure for
iterative refinement of
can be defined as follows, starting with
:
- for , until convergence
compute |
|
solve |
|
compute |
|
In
Chapter F04, routines are provided which perform this procedure using
additional precision to compute
, and are thus able to reduce the
forward error to the level of
machine precision.
The routines in this chapter do not use additional precision to compute , and cannot guarantee a small forward error, but can guarantee a small backward error (except in rare cases when is very ill-conditioned, or when and are sparse in such a way that has a zero or very small component). The iterations continue until the backward error has been reduced as much as possible; usually only one iteration is needed.
2.5
Matrix Inversion
It is seldom necessary to compute an explicit inverse of a matrix. In particular, do
not attempt to solve
by first computing
and then forming the matrix-vector product
; the procedure described in
Section 2.3 is more efficient and more accurate.
However, routines are provided for the rare occasions when an inverse is needed, using one of the factorizations described in
Section 2.2.
2.6
Packed Storage Formats
Routines which handle symmetric matrices are usually designed so that they use either the upper or lower triangle of the matrix; it is not necessary to store the whole matrix. If the upper or lower triangle is stored conventionally in the upper or lower triangle of a two-dimensional array, the remaining elements of the array can be used to store other useful data.
However, that is not always convenient, and if it is important to economize on storage, the upper or lower triangle can be stored in a one-dimensional array of length or a two-dimensional array with elements; in other words, the storage is almost halved.
The one-dimensional array storage format is referred to as packed storage; it is described in
Section 3.3.2. The two-dimensional array storage format is referred to as Rectangular Full Packed (RFP) format; it is described in
Section 3.3.3. They may also be used for triangular matrices.
Routines designed for these packed storage formats perform the same number of arithmetic operations as routines which use conventional storage. Those using a packed one-dimensional array are usually less efficient, especially on high-performance computers, so there is then a trade-off between storage and efficiency. The RFP routines are as efficient as for conventional storage, although only a small subset of routines use this format.
2.7
Band and Tridiagonal Matrices
A
band matrix is one whose nonzero elements are confined to a relatively small number of subdiagonals or superdiagonals on either side of the main diagonal. A
tridiagonal matrix is a special case of a band matrix with just one subdiagonal and one superdiagonal. Algorithms can take advantage of bandedness to reduce the amount of work and storage required. The storage scheme used for band matrices is described in
Section 3.3.4.
The factorization for general matrices, and the Cholesky factorization for symmetric and Hermitian positive definite matrices both preserve bandedness. Hence routines are provided which take advantage of the band structure when solving systems of linear equations.
The Cholesky factorization preserves bandedness in a very precise sense: the factor or has the same number of superdiagonals or subdiagonals as the original matrix. In the factorization, the row-interchanges modify the band structure: if has subdiagonals and superdiagonals, then is not a band matrix but still has at most nonzero elements below the diagonal in each column; and has at most superdiagonals.
The Bunch–Kaufman factorization does not preserve bandedness, because of the need for symmetric row-and-column permutations; hence no routines are provided for symmetric indefinite band matrices.
The inverse of a band matrix does not in general have a band structure, so no routines are provided for computing inverses of band matrices.
2.8
Block Partitioned Algorithms
Many of the routines in this chapter use what is termed a
block partitioned algorithm. This means that at each major step of the algorithm a
block of rows or columns is updated, and most of the computation is performed by matrix-matrix operations on these blocks. The matrix-matrix operations are performed by calls to the Level 3 BLAS
(see
Chapter F06),
which are the key to achieving high performance on many modern computers. See
Golub and Van Loan (1996) or
Anderson et al. (1999) for more about block partitioned algorithms.
The performance of a block partitioned algorithm varies to some extent with the block size – that is, the number of rows or columns per block. This is a machine-dependent argument, which is set to a suitable value when the library is implemented on each range of machines. You do not normally need to be aware of what value is being used. Different block sizes may be used for different routines. Values in the range to are typical.
On some machines there may be no advantage from using a block partitioned algorithm, and then the routines use an
unblocked algorithm (effectively a block size of
), relying solely on calls to the Level 2 BLAS
(see
Chapter F06
again).
The only situation in which you need some awareness of the block size is when it affects the amount of workspace to be supplied to a particular routine. This is discussed in
Section 3.4.3.
2.9
Mixed Precision LAPACK Routines
Some LAPACK routines use mixed precision arithmetic in an effort to solve problems more efficiently on modern hardware. They work by converting a double precision problem into an equivalent single precision problem, solving it and then using iterative refinement in double precision to find a full precision solution to the original problem. The method may fail if the problem is too ill-conditioned to allow the initial single precision solution, in which case the routines fall back to solve the original problem entirely in double precision. The vast majority of problems are not so ill-conditioned, and in those cases the technique can lead to significant gains in speed without loss of accuracy. This is particularly true on machines where double precision arithmetic is significantly slower than single precision.
3
Recommendations on Choice and Use of Available Routines
3.1
Available Routines
Tables 1 to
8 in
Section 3.5 show the routines which are provided for performing different computations on different types of matrices.
Tables 1 to
4 show routines for real matrices;
Tables 5 to
8 show routines for complex matrices. Each entry in the table gives the NAG routine name and the LAPACK double precision name (see
Section 3.2).
Routines are provided for the following types of matrix:
- general
- general band
- general tridiagonal
- symmetric or Hermitian positive definite
- symmetric or Hermitian positive definite (packed storage)
- symmetric or Hermitian positive definite (RFP storage)
- symmetric or Hermitian positive definite band
- symmetric or Hermitian positive definite tridiagonal
- symmetric or Hermitian indefinite
- symmetric or Hermitian indefinite (packed storage)
- triangular
- triangular (packed storage)
- triangular (RFP storage)
- triangular band
For each of the above types of matrix (except where indicated), routines are provided to perform the following computations:
(a) |
(except for RFP matrices) solve a system of linear equations (driver routines); |
(b) |
(except for RFP matrices) solve a system of linear equations with condition and error estimation (expert drivers); |
(c) |
(except for triangular matrices) factorize the matrix (see Section 2.2); |
(d) |
solve a system of linear equations, using the factorization (see Section 2.3); |
(e) |
(except for RFP matrices) estimate the condition number of the matrix, using the factorization (see Section 2.4.2); these routines also require the norm of the original matrix (except when the matrix is triangular) which may be computed by a routine in
Chapter F06; |
(f) |
(except for RFP matrices) refine the solution and compute forward and backward error bounds (see Sections 2.4.4 and 2.4.5); these routines require the original matrix and right-hand side, as well as the factorization returned from (a) and the solution returned from (b); |
(g) |
(except for band and tridiagonal matrices) invert the matrix, using the factorization (see Section 2.5); |
(h) |
(except for tridiagonal, symmetric indefinite, triangular and RFP matrices) compute scale factors to equilibrate the matrix (see Section 2.4.3). |
Thus, to solve a particular problem, it is usually only necessary to call a single driver routine, but alternatively two or more routines may be called in succession. This is illustrated in the example programs in the routine documents.
3.2
NAG Names and LAPACK Names
As well as the NAG routine name (beginning F07),
Tables 1 to
8 show the LAPACK routine names in double precision.
The routines may be called either by their NAG names or by their LAPACK names. When using the NAG Library, the double precision form of the LAPACK name must be used (beginning with D- or Z-).
References to
Chapter F07 routines in the manual normally include the LAPACK double precision names, for example,
f07adf (dgetrf).
The LAPACK routine names follow a simple
scheme (which is similar to that used for the BLAS in
Chapter F06).
Most names have the structure
XYYZZZ, where the components have the following meanings:
– |
the initial letter X indicates the data type (real or complex) and precision:
S |
– real, single precision (in Fortran 77, REAL) |
D |
– real, double precision (in Fortran 77, DOUBLE PRECISION) |
C |
– complex, single precision (in Fortran 77, COMPLEX) |
Z |
– complex, double precision (in Fortran 77, COMPLEX*16 or DOUBLE COMPLEX) |
|
– |
exceptionally, the mixed precision LAPACK routines described in Section 2.9 replace the initial first letter by a pair of letters, as:
DS | – double precision routine using single precision internally | ZC | – double complex routine using single precision complex internally |
|
– |
the letters YY indicate the type of the matrix (and in some cases its storage scheme):
GE |
– general |
GB |
– general band |
PO |
– symmetric or Hermitian positive definite |
PF |
– symmetric or Hermitian positive definite (RFP storage) |
PP |
– symmetric or Hermitian positive definite (packed storage) |
PB |
– symmetric or Hermitian positive definite band |
SY |
– symmetric indefinite |
SF |
– symmetric indefinite (RFP storage) |
SP |
– symmetric indefinite (packed storage) |
HE |
– (complex) Hermitian indefinite |
HF |
– (complex) Hermitian indefinite (RFP storage) |
HP |
– (complex) Hermitian indefinite (packed storage) |
GT |
– general tridiagonal |
PT |
– symmetric or Hermitian positive definite tridiagonal |
TR |
– triangular |
TF |
– triangular (RFP storage) |
TP |
– triangular (packed storage) |
TB |
– triangular band |
|
– |
the last two or three letters ZZ or ZZZ indicate the computation performed. Examples are:
TRF | – triangular factorization | TRS | – solution of linear equations, using the factorization | CON | – estimate condition number | RFS | – refine solution and compute error bounds | TRI | – compute inverse, using the factorization |
|
Thus the routine
dgetrf performs a triangular factorization of a real general matrix in double precision; the corresponding routine for a complex general matrix is
zgetrf.
3.3
Matrix Storage Schemes
In this chapter the following different storage schemes are used for matrices:
- – conventional storage in a two-dimensional array;
- – packed storage for symmetric, Hermitian or triangular matrices;
- – rectangular full packed (RFP) storage for symmetric, Hermitian or triangular matrices;
- – band storage for band matrices.
These storage schemes are compatible with those used in
Chapter F06
(especially in the BLAS) and
Chapter F08, but different schemes for packed or band storage are used in a few older routines in
Chapters F01,
F02,
F03 and
F04.
In the examples below, indicates an array element which need not be set and is not referenced by the routines.
The examples illustrate only the relevant part of the arrays; array arguments may of course have additional rows or columns, according to the usual rules for passing array arguments in Fortran 77.
3.3.1
Conventional storage
The default scheme for storing matrices is the obvious one: a matrix is stored in a two-dimensional array a, with matrix element stored in array element .
If a matrix is triangular (upper or lower, as specified by the argument uplo), only the elements of the relevant triangle are stored; the remaining elements of the array need not be set. Such elements are indicated by * or in the examples below.
For example, when
:
uplo |
Triangular matrix |
Storage in array a |
'U' |
|
|
'L' |
|
|
Routines which handle symmetric or Hermitian matrices allow for either the upper or lower triangle of the matrix (as specified by uplo) to be stored in the corresponding elements of the array; the remaining elements of the array need not be set.
For example, when
:
uplo |
Hermitian matrix |
Storage in array a |
'U' |
|
|
'L' |
|
|
3.3.2
Packed storage
Symmetric, Hermitian or triangular matrices may be stored more compactly, if the relevant triangle (again as specified by
uplo)
is packed by columns in a one-dimensional array. In this chapter, as in
Chapters F06 and
F08,
arrays which hold matrices in packed storage, have names ending in P. For a matrix of order
, the array must have at least
elements.
So:
- if ,
is stored in
for ;
- if ,
is stored in
for .
For example:
|
Triangle of matrix |
Packed storage in array ap |
|
|
|
|
|
|
Note that for real symmetric matrices, packing the upper triangle by columns is equivalent to packing the lower triangle by rows; packing the lower triangle by columns is equivalent to packing the upper triangle by rows. (For complex Hermitian matrices, the only difference is that the off-diagonal elements are conjugated.)
3.3.3
Rectangular Full Packed (RFP) Storage
The rectangular full packed (RFP) storage format offers the same savings in storage as the packed storage format (described in
Section 3.3.2), but is likely to be much more efficient in general since the block structure of the matrix is maintained. This structure can be exploited using block partition algorithms (see
Section 2.8) in a similar way to matrices that use conventional storage.
Figure 1
Figure 1 gives a graphical representation of the key idea of RFP for the particular case of a lower triangular matrix of even dimensions. In all cases the original triangular matrix of stored elements is separated into a trapezoidal part and a triangular part. The number of columns in these two parts is equal when the dimension of the matrix is even,
, while the trapezoidal part has
columns when
. The smaller part is then transposed and fitted onto the trapezoidal part forming a rectangle. The rectangle has dimensions
and
, where
when
is even and
when
is odd.
For routines using RFP there is the option of storing the rectangle as described above () or its transpose (, for real a) or its conjugate transpose (, for complex a).
As an example, we first consider RFP for the case with .
If
, then
ar holds
a as follows:
- For the upper trapezoid consists of the last three columns of a upper. The lower triangle consists of the transpose of the first three columns of a upper.
- For the lower trapezoid consists of the first three columns of a lower. The upper triangle consists of the transpose of the last three columns of a lower.
If , then ar in both uplo cases is just the transpose of ar as defined when .
uplo |
Triangle of matrix |
Rectangular Full Packed matrix |
|
|
'U' |
|
|
|
'L'
|
|
|
|
Now we consider RFP for the case and .
If
.
ar holds
a as follows:
- if the upper trapezoid consists of the last three columns of a upper. The lower triangle consists of the transpose of the first two columns of a upper;
- if the lower trapezoid consists of the first three columns of a lower. The upper triangle consists of the transpose of the last two columns of a lower.
If . ar in both uplo cases is just the transpose of ar as defined when .
uplo |
Triangle of matrix |
Rectangular Full Packed matrix |
|
|
'U' |
|
|
|
'L' |
|
|
|
Explicitly, in the real matrix case,
ar is a one-dimensional array of length
and contains the elements of
a as follows:
-
for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and .
In the case of complex matrices, the assumption is that the full matrix, if it existed, would be Hermitian. Thus, when
, the triangular portion of
a that is, in the real case, transposed into the notional
by
RFP matrix is also conjugated. When
the notional
by
RFP matrix is the conjugate transpose of the corresponding
RFP matrix. Explicitly, for complex
a, the array
ar contains the elements (or conjugated elements) of
a as follows:
-
for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and ;
- for and ,
-
is stored in
, for and , and
is stored in
, for and .
3.3.4
Band storage
A band matrix with
subdiagonals and
superdiagonals may be stored compactly in a two-dimensional array with
rows and
columns. Columns of the matrix are stored in corresponding columns of the array, and diagonals of the matrix are stored in rows of the array. This storage scheme should be used in practice only if
,
, although the routines in
Chapters F07 and
F08 work correctly for all values of
and
. In
Chapters F07 and
F08 arrays which hold matrices in band storage have names ending in
.
To be precise, elements of matrix elements are stored as follows:
- is stored in for .
For example, when
,
and
:
Band matrix |
Band storage in array ab |
|
|
The elements marked in the upper left and lower right corners of the array ab need not be set, and are not referenced by the routines.
Note: when a general band matrix is supplied for factorization, space must be allowed to store an additional superdiagonals, generated by fill-in as a result of row interchanges. This means that the matrix is stored according to the above scheme, but with superdiagonals.
Triangular band matrices are stored in the same format, with either if upper triangular, or if lower triangular.
For symmetric or Hermitian band matrices with subdiagonals or superdiagonals, only the upper or lower triangle (as specified by uplo) need be stored:
- if , is stored in for ;
- if , is stored in for .
For example, when
and
:
uplo |
Hermitian band matrix |
Band storage in array ab |
'U' |
|
|
'L' |
|
|
Note that different storage schemes for band matrices are used by some routines in
Chapters F01,
F02,
F03 and
F04.
3.3.5
Unit triangular matrices
Some routines in this chapter have an option to handle unit triangular matrices (that is, triangular matrices with diagonal elements ). This option is specified by an argument diag. If (Unit triangular), the diagonal elements of the matrix need not be stored, and the corresponding array elements are not referenced by the routines. The storage scheme for the rest of the matrix (whether conventional, packed or band) remains unchanged.
3.3.6
Real diagonal elements of complex matrices
Complex Hermitian matrices have diagonal elements that are by definition purely real. In addition, complex triangular matrices which arise in Cholesky factorization are defined by the algorithm to have real diagonal elements.
If such matrices are supplied as input to routines in
Chapters F07 and
F08, the imaginary parts of the diagonal elements are not referenced, but are assumed to be zero. If such matrices are returned as output by the routines, the computed imaginary parts are explicitly set to zero.
3.4
Parameter Conventions
3.4.1
Option arguments
Most routines in this chapter have one or more option arguments, of type CHARACTER. The descriptions in Section 5 of the routine documents refer only to upper-case values (for example or ); however, in every case, the corresponding lower-case characters may be supplied (with the same meaning). Any other value is illegal.
A longer character string can be passed as the actual argument, making the calling program more readable, but only the first character is significant.
(This is a feature of Fortran 77.) For example:
Call dgetrs('Transpose',...)
3.4.2
Problem dimensions
It is permissible for the problem dimensions (for example,
m in
f07adf (dgetrf),
n or
nrhs in
f07aef (dgetrs)) to be passed as zero, in which case the computation (or part of it) is skipped. Negative dimensions are regarded as an error.
3.4.3
Length of work arrays
A few routines implementing block partitioned algorithms require workspace sufficient to hold one block of rows or columns of the matrix if they are to achieve optimum levels of performance — for example, workspace of size , where is the optimum block size. In such cases, the actual declared length of the work array must be passed as a separate argument lwork, which immediately follows work in the argument-list.
The routine will still perform correctly when less workspace is provided: it uses the largest block size allowed by the amount of workspace supplied, as long as this is likely to give better performance than the unblocked algorithm. On exit, contains the minimum value of lwork which would allow the routine to use the optimum block size; this value of lwork may be used for subsequent runs.
If
lwork indicates that there is insufficient workspace to perform the unblocked algorithm, this is regarded as an illegal value of
lwork, and is treated like any other illegal argument value (see
Section 3.4.4), though
will still be set as described above.
If you are in doubt how much workspace to supply and are concerned to achieve optimum performance, supply a generous amount (assume a block size of , say), and then examine the value of on exit.
3.4.4
Error-handling and the diagnostic argument INFO
Routines in this chapter do not use the usual NAG Library error-handling mechanism, involving the argument IFAIL. Instead they have a diagnostic argument info. (Thus they preserve complete compatibility with the LAPACK specification.)
Whereas IFAIL is an Input/Output argument and must be set before calling a routine, info is purely an Output argument and need not be set before entry.
info indicates the success or failure of the computation, as follows:
- : successful termination
- : failure in the course of computation, control returned to the calling program
If the routine document specifies that the routine may terminate with , then it is essential to test info on exit from the routine. (This corresponds to a soft failure in terms of the usual NAG error-handling terminology.) No error message is output.
All routines check that input arguments such as n or lda or option arguments of type CHARACTER have permitted values. If an illegal value of the th argument is detected, info is set to , a message is output, and execution of the program is terminated. (This corresponds to a hard failure in the usual NAG terminology.)
3.5
Tables of Driver and Computational Routines
3.5.1
Real matrices
Each entry in the following tables, listing real matrices, gives:
- the NAG routine name and
- the double precision LAPACK routine name.
Table 1
Routines for real general matrices
Table 2
Routines for real symmetric positive definite and positive semidefinite matrices
Table 3
Routines for real symmetric indefinite matrices
Table 4
Routines for real triangular matrices
3.5.2
Complex matrices
Each entry in the following tables, listing complex matrices, gives:
- the NAG routine name and
- the double precision LAPACK routine name.
Table 5
Routines for complex general matrices
Table 6
Routines for complex Hermitian positive definite and positive semidefinite matrices
Table 7
Routines for complex Hermitian and symmetric indefinite matrices
Table 8
Routines for complex triangular matrices
4
Functionality Index
Apply iterative refinement to the solution and compute error estimates, | | |
after factorizing the matrix of coefficients, | | |
Compute row and column scalings, | | |
Condition number estimation, | | |
after factorizing the matrix of coefficients, | | |
LLT or UTU factorization, | | |
after factorizing the matrix of coefficients, | | |
complex triangular matrix, RFP storage, | | |
real triangular matrix, RFP storage, | | |
PLDLTPT or PUDUTPT factorization, | | |
Solution of simultaneous linear equations, | | |
after factorizing the matrix of coefficients, | | |
expert drivers (with condition and error estimation): | | |
complex Hermitian positive definite matrix, packed storage | | f07gnf (zppsv) |
complex Hermitian positive definite matrix, using mixed precision | | f07fqf (zcposv) |
real symmetric positive definite matrix, packed storage | | f07gaf (dppsv) |
real symmetric positive definite matrix, using mixed precision | | f07fcf (dsposv) |
5
Auxiliary Routines Associated with Library Routine Arguments
None.
6
Routines Withdrawn or Scheduled for Withdrawal
None.
7
References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999) LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1988) Algorithm 674: Fortran codes for estimating the one-norm of a real or complex matrix, with applications to condition estimation ACM Trans. Math. Software 14 381–396
Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford