PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgbtrf (f07br)
Purpose
nag_lapack_zgbtrf (f07br) computes the factorization of a complex by band matrix.
Syntax
Description
nag_lapack_zgbtrf (f07br) forms the factorization of a complex 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:
– complex 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_zgbsv (f07bn) 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:
– complex 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 real floating-point operations varies between approximately and , depending on the interchanges, assuming and .
A call to
nag_lapack_zgbtrf (f07br) may be followed by calls to the functions:
The real analogue of this function is
nag_lapack_dgbtrf (f07bd).
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:
f07br_example
function f07br_example
fprintf('f07br example results\n\n');
m = int64(4);
kl = int64(1);
ku = int64(2);
ab = [ 0 + 0i, 0 + 0i, 0 + 0i, 0 + 0i;
0 + 0i, 0 + 0i, 0.97 - 2.84i, 0.59 - 0.48i;
0 + 0i, -2.05 - 0.85i, -3.99 + 4.01i, 3.33 - 1.04i;
-1.65 + 2.26i, -1.48 - 1.75i, -1.06 + 1.94i, -0.46 - 1.72i;
0 + 6.3i, -0.77 + 2.83i, 4.48 - 1.09i, 0 + 0i];
[abf, ipiv, info] = f07br( ...
m, kl, ku, ab);
mtitle = 'Details of factorization';
[ifail] = x04de( ...
m, m, kl, kl+ku, abf, mtitle);
disp('Pivot indices');
disp(double(ipiv'));
f07br example results
Details of factorization
1 2 3 4
1 0.0000 -1.4800 -3.9900 0.5900
6.3000 -1.7500 4.0100 -0.4800
2 0.3587 -0.7700 -1.0600 3.3300
0.2619 2.8300 1.9400 -1.0400
3 0.2314 4.9303 -1.7692
0.6358 -3.0086 -1.8587
4 0.7604 0.4338
0.2429 0.1233
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