PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgbtrf (f07bd)
Purpose
nag_lapack_dgbtrf (f07bd) computes the factorization of a real by band matrix.
Syntax
Description
nag_lapack_dgbtrf (f07bd) forms the factorization of a real by band matrix using partial pivoting, with row interchanges. Usually , and then, if has nonzero subdiagonals and nonzero superdiagonals, the factorization has the form , where is a permutation matrix, is a lower triangular matrix with unit diagonal elements and at most nonzero elements in each column, and is an upper triangular band matrix with superdiagonals.
Note that is not a band matrix, but the nonzero elements of can be stored in the same space as the subdiagonal elements of . is a band matrix but with additional superdiagonals compared with . These additional superdiagonals are created by the row interchanges.
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
, the number of subdiagonals within the band of the matrix .
Constraint:
.
- 3:
– int64int32nag_int scalar
-
, the number of superdiagonals within the band of the matrix .
Constraint:
.
- 4:
– double array
-
The first dimension of the array
ab must be at least
.
The second dimension of the array
ab must be at least
.
The
by
matrix
.
The matrix is stored in rows
to
; the first
rows need not be set, more precisely, the element
must be stored in
See
Further Comments in
nag_lapack_dgbsv (f07ba) for further details.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
ab.
, the number of columns of the matrix .
Constraint:
.
Output Parameters
- 1:
– double array
-
The first dimension of the array
ab will be
.
The second dimension of the array
ab will be
.
If
,
ab stores details of the factorization.
The upper triangular band matrix , with superdiagonals, is stored in rows to of the array, and the multipliers used to form the matrix are stored in rows to .
- 2:
– int64int32nag_int array
-
The pivot indices that define the permutation matrix. At the
th step, if then row of the matrix was interchanged with row , for . indicates that, at the th step, a row interchange was not required.
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
- W
-
Element of the diagonal is exactly zero.
The factorization has been completed, but the factor is exactly singular, and division by zero will occur if it is used to solve
a system of equations.
Accuracy
The computed factors
and
are the exact factors of a perturbed matrix
, where
is a modest linear function of
, and
is the
machine precision. This assumes
.
Further Comments
The total number of floating-point operations varies between approximately and , depending on the interchanges, assuming and .
A call to
nag_lapack_dgbtrf (f07bd) may be followed by calls to the functions:
The complex analogue of this function is
nag_lapack_zgbtrf (f07br).
Example
This example computes the
factorization of the matrix
, where
Here
is treated as a band matrix with one subdiagonal and two superdiagonals.
Open in the MATLAB editor:
f07bd_example
function f07bd_example
fprintf('f07bd example results\n\n');
m = int64(4);
kl = int64(1);
ku = int64(2);
ab = [ 0, 0, 0, 0;
0, 0, -3.66, -2.13;
0, 2.54, -2.73, 4.07;
-0.23, 2.46, 2.46, -3.82;
-6.98, 2.56, -4.78, 0];
[abf, ipiv, info] = f07bd( ...
m, kl, ku, ab);
mtitle = 'Details of factorization';
[ifail] = x04ce( ...
m, m, kl, kl+ku, abf, mtitle);
fprintf('\n');
disp('Pivot indices');
disp(double(ipiv'));
f07bd example results
Details of factorization
1 2 3 4
1 -6.9800 2.4600 -2.7300 -2.1300
2 0.0330 2.5600 2.4600 4.0700
3 0.9605 -5.9329 -3.8391
4 0.8057 -0.7269
Pivot indices
2 3 3 4
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015