NAG CL Interface
f03bac (real_​gen)

Settings help

CL Name Style:


1 Purpose

f03bac computes the determinant of a real n×n matrix A. f07adc must be called first to supply the matrix A in factorized form.

2 Specification

#include <nag.h>
void  f03bac (Nag_OrderType order, Integer n, const double a[], Integer pda, const Integer ipiv[], double *d, Integer *id, NagError *fail)
The function may be called by the names: f03bac or nag_det_real_gen.

3 Description

f03bac computes the determinant of a real n×n matrix A that has been factorized by a call to f07adc. 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: order Nag_OrderType Input
On entry: the order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by order=Nag_RowMajor. See Section 3.1.3 in the Introduction to the NAG Library CL Interface for a more detailed explanation of the use of this argument.
Constraint: order=Nag_RowMajor or Nag_ColMajor.
2: n Integer Input
On entry: n, the order of the matrix A.
Constraint: n>0.
3: a[dim] const double Input
Note: the dimension, dim, of the array a must be at least pda×n.
the (i,j)th element of the factorized form of the matrix A is stored in
  • a[(j-1)×pda+i-1] when order=Nag_ColMajor;
  • a[(i-1)×pda+j-1] when order=Nag_RowMajor.
On entry: the n×n matrix A in factorized form as returned by f07adc.
4: pda Integer Input
On entry: the stride separating row or column elements (depending on the value of order) in the array a.
Constraint: pdan.
5: ipiv[n] const Integer Input
On entry: the row interchanges used to factorize matrix A as returned by f07adc.
6: d double * Output
7: id Integer * Output
On exit: the determinant of A is given by d×2.0id. It is given in this form to avoid overflow or underflow.
8: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, n=value.
Constraint: n1.
NE_INT_2
On entry, pda=value and n=value.
Constraint: pdan.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_SINGULAR
The matrix A 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).

8 Parallelism and Performance

f03bac is not threaded in any implementation.

9 Further Comments

The time taken by f03bac 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 (f03bace.c)

10.2 Program Data

Program Data (f03bace.d)

10.3 Program Results

Program Results (f03bace.r)