PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zpbsv (f07hn)
Purpose
nag_lapack_zpbsv (f07hn) computes the solution to a complex system of linear equations
where
is an
by
Hermitian positive definite band matrix of bandwidth
and
and
are
by
matrices.
Syntax
Description
nag_lapack_zpbsv (f07hn) uses the Cholesky decomposition to factor as if or if , where is an upper triangular band matrix, and is a lower triangular band matrix, with the same number of superdiagonals or subdiagonals as . 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
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
If
, the upper triangle of
is stored.
If , the lower triangle of is stored.
Constraint:
or .
- 2:
– int64int32nag_int scalar
-
, the number of superdiagonals of the matrix if , or the number of subdiagonals if .
Constraint:
.
- 3:
– 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 upper or lower triangle of the Hermitian band matrix
.
The matrix is stored in rows
to
, more precisely,
- if , the elements of the upper triangle of within the band must be stored with element in ;
- if , the elements of the lower triangle of within the band must be stored with element in
- 4:
– complex 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 right-hand side matrix .
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:
– complex array
-
The first dimension of the array
ab will be
.
The second dimension of the array
ab will be
.
If , the triangular factor or from the Cholesky factorization or of the band matrix , in the same storage format as .
- 2:
– complex array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
If , the by solution matrix .
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
-
The leading minor of order of is not positive
definite, so the factorization could not be completed, and the solution has
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. See Section 4.4 of
Anderson et al. (1999) for further details.
nag_lapack_zpbsvx (f07hp) is a comprehensive LAPACK driver that returns forward and backward error bounds and an estimate of the condition number. Alternatively,
nag_linsys_complex_posdef_band_solve (f04cf) solves
and returns a forward error bound and condition estimate.
nag_linsys_complex_posdef_band_solve (f04cf) calls
nag_lapack_zpbsv (f07hn) to solve the equations.
Further Comments
When , the total number of floating-point operations is approximately , where is the number of superdiagonals and is the number of right-hand sides.
The real analogue of this function is
nag_lapack_dpbsv (f07ha).
Example
This example solves the equations
where
is the Hermitian positive definite band matrix
and
Details of the Cholesky factorization of are also output.
Open in the MATLAB editor:
f07hn_example
function f07hn_example
fprintf('f07hn example results\n\n');
uplo = 'U';
kd = int64(1);
n = int64(4);
ab = [0, 1.08 - 1.73i, -0.04 + 0.29i, -0.33 + 2.24i;
9.39 + 0i, 1.69 + 0i, 2.65 + 0i, 2.17 + 0i];
b = [ -12.42 + 68.42i;
-9.93 + 0.88i;
-27.3 - 0.01i;
5.31 + 23.63i];
[abf, x, info] = f07hn( ...
uplo, kd, ab, b);
disp('Solution');
disp(x);
kl = int64(0);
[ifail] = x04de( ...
n, n, kl, kd, abf, 'Cholesky factor');
f07hn example results
Solution
-1.0000 + 8.0000i
2.0000 - 3.0000i
-4.0000 - 5.0000i
7.0000 + 6.0000i
Cholesky factor
1 2 3 4
1 3.0643 0.3524
0.0000 -0.5646
2 1.1167 -0.0358
0.0000 0.2597
3 1.6066 -0.2054
0.0000 1.3942
4 0.4289
0.0000
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015