PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_linsys_real_band_solve (f04bb)
Purpose
nag_linsys_real_band_solve (f04bb) computes the solution to a real system of linear equations , where is an by band matrix, with subdiagonals and superdiagonals, and and are by matrices. An estimate of the condition number of and an error bound for the computed solution are also returned.
Syntax
[
ab,
ipiv,
b,
rcond,
errbnd,
ifail] = f04bb(
kl,
ku,
ab,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
ab,
ipiv,
b,
rcond,
errbnd,
ifail] = nag_linsys_real_band_solve(
kl,
ku,
ab,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
The decomposition with partial pivoting and row interchanges is used to factor as , where is a permutation matrix, is the product of permutation matrices and unit lower triangular matrices with subdiagonals, and is upper triangular with superdiagonals. The factored form of is then used to solve the system of equations .
References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999)
LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
http://www.netlib.org/lapack/lug
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
The number of subdiagonals , within the band of .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
The number of superdiagonals , within the band of .
Constraint:
.
- 3:
– 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 for further details.
- 4:
– double array
-
The first dimension of the array
b must be at least
.
The second dimension of the array
b must be at least
.
The by matrix of right-hand sides .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
b and the second dimension of the array
ab.
The number of linear equations , i.e., the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
b.
The number of right-hand sides , i.e., 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
-
If , the pivot indices that define the permutation matrix ; at the th step row of the matrix was interchanged with row . indicates a row interchange was not required.
- 3:
– double array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
If or , the by solution matrix .
- 4:
– double scalar
-
If no constraints are violated, an estimate of the reciprocal of the condition number of the matrix , computed as .
- 5:
– double scalar
-
If
or
, an estimate of the forward error bound for a computed solution
, such that
, where
is a column of the computed solution returned in the array
b and
is the corresponding column of the exact solution
. If
rcond is less than
machine precision, then
errbnd is returned as unity.
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
- W
-
Diagonal element of the upper triangular factor is zero. The factorization has been completed, but the solution could not be computed.
- W
-
A solution has been computed, but
rcond is less than
machine precision so that the matrix
is numerically singular.
-
-
Constraint: .
-
-
Constraint: .
-
-
Constraint: .
-
-
Constraint: .
-
-
Constraint: .
-
-
Constraint: .
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
The integer allocatable memory required is n, and the double allocatable memory required is . In this case the factorization and the solution have been computed, but rcond and errbnd have not been computed.
Accuracy
The computed solution for a single right-hand side,
, satisfies an equation of the form
where
and
is the
machine precision. An approximate error bound for the computed solution is given by
where
, the condition number of
with respect to the solution of the linear equations.
nag_linsys_real_band_solve (f04bb) uses the approximation
to estimate
errbnd. See Section 4.4 of
Anderson et al. (1999)
for further details.
Further Comments
The band storage scheme for the array
ab is illustrated by the following example, when
,
, and
.
Storage of the band matrix
in the array
ab:
Array elements marked need not be set and are not referenced by the function. Array elements marked + need not be set, but are defined on exit from the function and contain the elements
,
and
.
The total number of floating-point operations required to solve the equations depends upon the pivoting required, but if then it is approximately bounded by for the factorization and for the solution following the factorization. The condition number estimation typically requires between four and five solves and never more than eleven solves, following the factorization.
In practice the condition number estimator is very reliable, but it can underestimate the true condition number; see Section 15.3 of
Higham (2002) for further details.
The complex analogue of
nag_linsys_real_band_solve (f04bb) is
nag_linsys_complex_band_solve (f04cb).
Example
This example solves the equations
where
is the band matrix
An estimate of the condition number of and an approximate error bound for the computed solutions are also printed.
Open in the MATLAB editor:
f04bb_example
function f04bb_example
fprintf('f04bb example results\n\n');
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];
b = [ 4.42, -36.01;
27.13, -31.67;
-6.14, -1.16;
10.5, -25.82];
[ab, ipiv, x, rcond, errbnd, ifail] = ...
f04bb(kl, ku, ab, b);
disp('Solution');
disp(x);
disp('Estimate of condition number');
fprintf('%10.1f\n\n',1/rcond);
disp('Estimate of error bound for computed solutions');
fprintf('%10.1e\n\n',errbnd);
f04bb example results
Solution
-2.0000 1.0000
3.0000 -4.0000
1.0000 7.0000
-4.0000 -2.0000
Estimate of condition number
56.4
Estimate of error bound for computed solutions
6.3e-15
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015