NAG Library Routine Document
F03BNF
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
F03BNF computes the determinant of a complex
by
matrix
.
F07ARF (ZGETRF) must be called first to supply the matrix
in factorized form.
2 Specification
INTEGER
N, LDA, IPIV(N), ID(2), IFAIL
COMPLEX (KIND=nag_wp)
A(LDA,*), D
3 Description
F03BNF computes the determinant of a complex
by
matrix
that has been factorized by a call to
F07ARF (ZGETRF). 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,) – COMPLEX (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
F07ARF (ZGETRF).
- 3: LDA – INTEGERInput
On entry: the first dimension of the array
A as declared in the (sub)program from which F03BNF is called.
Constraint:
.
- 4: IPIV(N) – INTEGER arrayInput
On entry: the row interchanges used to factorize matrix
as returned by
F07ARF (ZGETRF).
- 5: D – COMPLEX (KIND=nag_wp)Output
On exit: the mantissa of the real and imaginary parts of the determinant.
- 6: ID() – INTEGER arrayOutput
On exit: the exponents for the real and imaginary parts of the determinant. The determinant,
, is returned as
and
, where
and
and
are stored in the first and second elements respectively of the array
ID on successful exit.
- 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 F03BNF is approximately proportional to .
9 Example
This example calculates the determinant of the complex matrix
9.1 Program Text
Program Text (f03bnfe.f90)
9.2 Program Data
Program Data (f03bnfe.d)
9.3 Program Results
Program Results (f03bnfe.r)