NAG Library Routine Document

f03baf (real_gen)

1
Purpose

f03baf computes the determinant of a real n by n matrix A. f07adf (dgetrf) must be called first to supply the matrix A in factorized form.

2
Specification

Fortran Interface
Subroutine f03baf ( n, a, lda, ipiv, d, id, ifail)
Integer, Intent (In):: n, lda, ipiv(n)
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: id
Real (Kind=nag_wp), Intent (In):: a(lda,*)
Real (Kind=nag_wp), Intent (Out):: d
C Header Interface
#include <nagmk26.h>
void  f03baf_ (const Integer *n, const double a[], const Integer *lda, const Integer ipiv[], double *d, Integer *id, Integer *ifail)

3
Description

f03baf computes the determinant of a real n by n matrix A that has been factorized by a call to f07adf (dgetrf). The determinant of A is the product of the diagonal elements of U 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
Arguments

1:     n – IntegerInput
On entry: n, the order of the matrix A.
Constraint: n>0.
2:     alda* – Real (Kind=nag_wp) arrayInput
Note: the second dimension of the array a must be at least n.
On entry: the n by n matrix A 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: ldan.
4:     ipivn – Integer arrayInput
On entry: the row interchanges used to factorize matrix A as returned by f07adf (dgetrf).
5:     d – Real (Kind=nag_wp)Output
6:     id – IntegerOutput
On exit: the determinant of A is given by d×2.0id. It is given in this form to avoid overflow or underflow.
7:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. 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 -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, n=value.
Constraint: n1.
ifail=3
On entry, lda=value and n=value.
Constraint: ldan.
ifail=4
The matrix A is approximately singular.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

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).

8
Parallelism and Performance

f03baf is not threaded in any implementation.

9
Further Comments

The time taken by f03baf is approximately proportional to n.

10
Example

This example computes the LU factorization with partial pivoting, and calculates the determinant, of the real matrix
33 16 72 -24 -10 -57 -8 -4 -17 .  

10.1
Program Text

Program Text (f03bafe.f90)

10.2
Program Data

Program Data (f03bafe.d)

10.3
Program Results

Program Results (f03bafe.r)