NAG Library Routine Document
F03BAF
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
F03BAF computes the determinant of a real
by
matrix
.
F07ADF (DGETRF) must be called first to supply the matrix
in factorized form.
2 Specification
INTEGER
N, LDA, IPIV(N), ID, IFAIL
REAL (KIND=nag_wp)
A(LDA,*), D
3 Description
F03BAF computes the determinant of a real
by
matrix
that has been factorized by a call to
F07ADF (DGETRF). The determinant of
is the product of the diagonal elements of
with the correct sign determined by the row interchanges.
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
by
matrix
in factorized form as returned by
F07ADF (DGETRF).
- 3: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F03BAF is called.
Constraint:
.
- 4: IPIV(N) – INTEGER arrayInput
On entry: the row interchanges used to factorize matrix
as returned by
F07ADF (DGETRF).
- 5: D – REAL (KIND=nag_wp)Output
- 6: ID – INTEGEROutput
On exit: the determinant of is given by . It is given in this form to avoid overflow or underflow.
- 7: 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 approximately singular.
7 Accuracy
The accuracy of the determinant depends on the conditioning of the original matrix. For a detailed error analysis, see page 107 of
Wilkinson and Reinsch (1971).
The time taken by F03BAF is approximately proportional to .
9 Example
This example computes the
factorization with partial pivoting, and calculates the determinant, of the real matrix
9.1 Program Text
Program Text (f03bafe.f90)
9.2 Program Data
Program Data (f03bafe.d)
9.3 Program Results
Program Results (f03bafe.r)