NAG CL Interface
f07gbc (dppsvx)
1
Purpose
f07gbc uses the Cholesky factorization
to compute the solution to a real system of linear equations
where
is an
by
symmetric positive definite matrix stored in packed format and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
2
Specification
void |
f07gbc (Nag_OrderType order,
Nag_FactoredFormType fact,
Nag_UploType uplo,
Integer n,
Integer nrhs,
double ap[],
double afp[],
Nag_EquilibrationType *equed,
double s[],
double b[],
Integer pdb,
double x[],
Integer pdx,
double *rcond,
double ferr[],
double berr[],
NagError *fail) |
|
The function may be called by the names: f07gbc, nag_lapacklin_dppsvx or nag_dppsvx.
3
Description
f07gbc performs the following steps:
-
1.If , real diagonal scaling factors, , are computed to equilibrate the system:
Whether or not the system will be equilibrated depends on the scaling of the matrix , but if equilibration is used, is overwritten by and by .
-
2.If or , the Cholesky decomposition is used to factor the matrix (after equilibration if ) as if or if , where is an upper triangular matrix and is a lower triangular matrix.
-
3.If the leading by principal minor of is not positive definite, then the function returns with and NE_MAT_NOT_POS_DEF. Otherwise, the factored form of is used to estimate the condition number of the matrix . If the reciprocal of the condition number is less than machine precision, NE_SINGULAR_WP is returned as a warning, but the function still goes on to solve for and compute error bounds as described below.
-
4.The system of equations is solved for using the factored form of .
-
5.Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it.
-
6.If equilibration was used, the matrix is premultiplied by so that it solves the original system before equilibration.
4
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
https://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia
5
Arguments
-
1:
– Nag_OrderType
Input
-
On entry: the
order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by
. See
Section 3.1.3 in the Introduction to the NAG Library CL Interface for a more detailed explanation of the use of this argument.
Constraint:
or .
-
2:
– Nag_FactoredFormType
Input
-
On entry: specifies whether or not the factorized form of the matrix
is supplied on entry, and if not, whether the matrix
should be equilibrated before it is factorized.
- afp contains the factorized form of . If , the matrix has been equilibrated with scaling factors given by s. ap and afp will not be modified.
- The matrix will be copied to afp and factorized.
- The matrix will be equilibrated if necessary, then copied to afp and factorized.
Constraint:
, or .
-
3:
– Nag_UploType
Input
-
On entry: if
, the upper triangle of
is stored.
If , the lower triangle of is stored.
Constraint:
or .
-
4:
– Integer
Input
-
On entry: , the number of linear equations, i.e., the order of the matrix .
Constraint:
.
-
5:
– Integer
Input
-
On entry: , the number of right-hand sides, i.e., the number of columns of the matrix .
Constraint:
.
-
6:
– double
Input/Output
-
Note: the dimension,
dim, of the array
ap
must be at least
.
On entry: if
and
,
ap must contain the equilibrated matrix
; otherwise,
ap must contain the
by
symmetric matrix
, packed by rows or columns.
The storage of elements
depends on the
order and
uplo arguments as follows:
- if and ,
- is stored in , for ;
- if and ,
- is stored in , for ;
- if and ,
- is stored in , for ;
- if and ,
- is stored in , for .
On exit: if
or
, or if
and
,
ap is not modified.
If
and
,
ap is overwritten by
.
-
7:
– double
Input/Output
-
Note: the dimension,
dim, of the array
afp
must be at least
.
On entry: if
,
afp contains the triangular factor
or
from the Cholesky factorization
or
, in the same storage format as
ap. If
,
afp is the factorized form of the equilibrated matrix
.
On exit: if
or if
and
,
afp returns the triangular factor
or
from the Cholesky factorization
or
of the original matrix
.
If
and
,
afp returns the triangular factor
or
from the Cholesky factorization
or
of the equilibrated matrix
(see the description of
ap for the form of the equilibrated matrix).
-
8:
– Nag_EquilibrationType *
Input/Output
-
On entry: if
or
,
equed need not be set.
If
,
equed must specify the form of the equilibration that was performed as follows:
- if , no equilibration;
- if , equilibration was performed, i.e., has been replaced by .
On exit: if
,
equed is unchanged from entry.
Otherwise, if no constraints are violated,
equed specifies the form of the equilibration that was performed as specified above.
Constraint:
if , or .
-
9:
– double
Input/Output
-
Note: the dimension,
dim, of the array
s
must be at least
.
On entry: if
or
,
s need not be set.
If
and
,
s must contain the scale factors,
, for
; each element of
s must be positive.
On exit: if
,
s is unchanged from entry.
Otherwise, if no constraints are violated and
,
s contains the scale factors,
, for
; each element of
s is positive.
-
10:
– double
Input/Output
-
Note: the dimension,
dim, of the array
b
must be at least
- when
;
- when
.
The
th element of the matrix
is stored in
- when ;
- when .
On entry: the by right-hand side matrix .
On exit: if
,
b is not modified.
If
,
b is overwritten by
.
-
11:
– Integer
Input
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
b.
Constraints:
- if ,
;
- if , .
-
12:
– double
Output
-
Note: the dimension,
dim, of the array
x
must be at least
- when
;
- when
.
The
th element of the matrix
is stored in
- when ;
- when .
On exit: if
NE_NOERROR or
NE_SINGULAR_WP, the
by
solution matrix
to the original system of equations. Note that the arrays
and
are modified on exit if
, and the solution to the equilibrated system is
.
-
13:
– Integer
Input
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
x.
Constraints:
- if ,
;
- if , .
-
14:
– double *
Output
-
On exit: if no constraints are violated, an estimate of the reciprocal condition number of the matrix (after equilibration if that is performed), computed as .
-
15:
– double
Output
-
On exit: if
NE_NOERROR or
NE_SINGULAR_WP, an estimate of the forward error bound for each computed solution vector, such that
where
is the
th column of the computed solution returned in the array
x and
is the corresponding column of the exact solution
. The estimate is as reliable as the estimate for
rcond, and is almost always a slight overestimate of the true error.
-
16:
– double
Output
-
On exit: if
NE_NOERROR or
NE_SINGULAR_WP, an estimate of the component-wise relative backward error of each computed solution vector
(i.e., the smallest relative change in any element of
or
that makes
an exact solution).
-
17:
– NagError *
Input/Output
-
The NAG error argument (see
Section 7 in the Introduction to the NAG Library CL Interface).
6
Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
See
Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_INT
-
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
- NE_INT_2
-
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
See
Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
- NE_MAT_NOT_POS_DEF
-
The leading minor of order of is not positive definite, so the factorization could not be completed, and the solution has not been computed. is returned.
- NE_NO_LICENCE
-
Your licence key may have expired or may not have been installed correctly.
See
Section 8 in the Introduction to the NAG Library CL Interface for further information.
- NE_SINGULAR_WP
-
(or
) is nonsingular, but
rcond is less than
machine precision, meaning that the matrix is singular to working precision.
Nevertheless, the solution and error bounds are computed because there
are a number of situations where the computed solution can be more accurate
than the value of
rcond would suggest.
7
Accuracy
For each right-hand side vector
, the computed solution
is the exact solution of a perturbed system of equations
, where
- if , ;
- if , ,
is a modest linear function of
, and
is the
machine precision. See Section 10.1 of
Higham (2002) for further details.
If
is the true solution, then the computed solution
satisfies a forward error bound of the form
where
. If
is the
th column of
, then
is returned in
and a bound on
is returned in
. See Section 4.4 of
Anderson et al. (1999) for further details.
8
Parallelism and Performance
f07gbc is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f07gbc makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The factorization of requires approximately floating-point operations.
For each right-hand side, computation of the backward error involves a minimum of floating-point operations. Each step of iterative refinement involves an additional operations. At most five steps of iterative refinement are performed, but usually only one or two steps are required. Estimating the forward error involves solving a number of systems of equations of the form ; the number is usually or and never more than . Each solution involves approximately operations.
The complex analogue of this function is
f07gpc.
10
Example
This example solves the equations
where
is the symmetric positive definite matrix
and
Error estimates for the solutions, information on equilibration and an estimate of the reciprocal of the condition number of the scaled matrix are also output.
10.1
Program Text
10.2
Program Data
10.3
Program Results