NAG Library Routine Document
f01buf
(real_symm_posdef_fac)
1
Purpose
f01buf performs a decomposition of a real symmetric positive definite band matrix.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n,
m1,
k,
lda | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (Inout) | :: |
a(lda,n) | Real (Kind=nag_wp), Intent (Out) | :: |
w(m1) |
|
C Header Interface
#include nagmk26.h
void |
f01buf_ (
const Integer *n,
const Integer *m1,
const Integer *k,
double a[],
const Integer *lda,
double w[],
Integer *ifail) |
|
3
Description
The symmetric positive definite matrix , of order and bandwidth , is divided into the leading principal sub-matrix of order and its complement, where . A decomposition of the latter and an decomposition of the former are obtained by means of a sequence of elementary transformations, where is unit upper triangular, is unit lower triangular and is diagonal. Thus if , an decomposition of is obtained.
This routine is specifically designed to precede
f01bvf for the transformation of the symmetric-definite eigenproblem
by the method of Crawford where
and
are of band form. In this context,
is chosen to be close to
and the decomposition is applied to the matrix
.
4
References
Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford
Wilkinson J H and Reinsch C (1971) Handbook for Automatic Computation II, Linear Algebra Springer–Verlag
5
Arguments
- 1: – IntegerInput
-
On entry: , the order of the matrix .
- 2: – IntegerInput
-
On entry: , where is the number of nonzero superdiagonals in . Normally .
- 3: – IntegerInput
-
On entry: , the change-over point in the decomposition.
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the upper triangle of the
by
symmetric band matrix
, with the diagonal of the matrix stored in the
th row of the array, and the
superdiagonals within the band stored in the first
rows of the array. Each column of the matrix is stored in the corresponding column of the array. For example, if
and
, the storage scheme is
Elements in the top left corner of the array are not used. The following code assigns the matrix elements within the band to the correct elements of the array:
Do 20 j = 1, n
Do 10 i = max(1,j-m1+1), j
a(i-j+m1,j) = matrix(i,j)
10 Continue
20 Continue
On exit: is overwritten by the corresponding elements of , and .
- 5: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f01buf is called.
Constraint:
.
- 6: – Real (Kind=nag_wp) arrayWorkspace
-
- 7: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
-
The matrix
is not positive definite, perhaps as a result of rounding errors, giving an element of
which is zero or negative.
when the failure occurs in the leading principal sub-matrix of order
k and
when it occurs in the complement.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The Cholesky decomposition of a positive definite matrix is known for its remarkable numerical stability (see
Wilkinson (1965)). The computed
,
and
satisfy the relation
where the
-norms of
and
are related by
where
is a constant of order unity and
is the
machine precision. In practice, the error is usually appreciably smaller than this.
8
Parallelism and Performance
f01buf is not threaded in any implementation.
The time taken by f01buf is approximately proportional to .
This routine is specifically designed for use as the first stage in the solution of the generalized symmetric eigenproblem by Crawford's method which preserves band form in the transformation to a similar standard problem. In this context, for maximum efficiency, should be chosen as the multiple of nearest to .
The matrix is such that is diagonal in its last rows and columns, is such that and is diagonal. To find , and where requires multiplications and divisions which, is independent of .
10
Example
This example finds a
decomposition of the real symmetric positive definite matrix
10.1
Program Text
Program Text (f01bufe.f90)
10.2
Program Data
Program Data (f01bufe.d)
10.3
Program Results
Program Results (f01bufe.r)