NAG Library Routine Document
F03BFF
Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
1 Purpose
F03BFF computes the determinant of a real
by
symmetric positive definite matrix
.
F07FDF (DPOTRF) must be called first to supply the symmetric matrix
in Cholesky factorized form. The storage (upper or lower triangular) used by
F07FDF (DPOTRF) is not relevant to F03BFF since only the diagonal elements of the factorized
are referenced.
2 Specification
INTEGER
N, LDA, ID, IFAIL
REAL (KIND=nag_wp)
A(LDA,*), D
3 Description
F03BFF computes the determinant of a real
by
symmetric positive definite matrix
that has been factorized as
, where
is upper triangular, or
, where
is lower triangular. The determinant is the product of the squares of the diagonal elements of
or
. The Cholesky factorized form of the matrix must be supplied; this is returned by a call to
F07FDF (DPOTRF).
4 References
Wilkinson J H and Reinsch C (1971) Handbook for Automatic Computation II, Linear Algebra Springer–Verlag
5 Parameters
- 1: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 2: A(LDA,) – REAL (KIND=nag_wp) arrayInput
-
Note: the second dimension of the array
A
must be at least
.
On entry: the lower or upper triangle of the Cholesky factorized form of the by positive definite symmetric matrix . Only the diagonal elements are referenced.
- 3: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F03BFF is called.
Constraint:
.
- 4: D – REAL (KIND=nag_wp)Output
- 5: ID – INTEGEROutput
On exit: the determinant of is given by . It is given in this form to avoid overflow or underflow.
- 6: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction 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 parameter, 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:
On entry, .
On entry, .
The matrix is not positive definite.
7 Accuracy
The accuracy of the determinant depends on the conditioning of the original matrix. For a detailed error analysis see page 25 of
Wilkinson and Reinsch (1971).
The time taken by F03BFF is approximately proportional to .
9 Example
This example computes a Cholesky factorization and calculates the determinant of the real symmetric positive definite matrix
9.1 Program Text
Program Text (f03bffe.f90)
9.2 Program Data
Program Data (f03bffe.d)
9.3 Program Results
Program Results (f03bffe.r)