PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dpttrs (f07je)
Purpose
nag_lapack_dpttrs (f07je) computes the solution to a real system of linear equations
, where
is an
by
symmetric positive definite tridiagonal matrix and
and
are
by
matrices, using the
factorization returned by
nag_lapack_dpttrf (f07jd).
Syntax
Description
nag_lapack_dpttrs (f07je) should be preceded by a call to
nag_lapack_dpttrf (f07jd), which computes a modified Cholesky factorization of the matrix
as
where
is a unit lower bidiagonal matrix and
is a diagonal matrix, with positive diagonal elements.
nag_lapack_dpttrs (f07je) then utilizes the factorization to solve the required equations. Note that the factorization may also be regarded as having the form
, where
is a unit upper bidiagonal matrix.
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
Parameters
Compulsory Input Parameters
- 1:
– double array
-
The dimension of the array
d
must be at least
Must contain the diagonal elements of the diagonal matrix from the factorization of .
- 2:
– double array
-
The dimension of the array
e
must be at least
Must contain the
subdiagonal elements of the unit lower bidiagonal matrix
. (
e can also be regarded as the superdiagonal of the unit upper bidiagonal matrix
from the
factorization of
.)
- 3:
– 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 dimension of the array
d.
, 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
b will be
.
The second dimension of the array
b will be
.
The by solution matrix .
- 2:
– 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.
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.
Following the use of this function
nag_lapack_dptcon (f07jg) can be used to estimate the condition number of
and
nag_lapack_dptrfs (f07jh) can be used to obtain approximate error bounds.
Further Comments
The total number of floating-point operations required to solve the equations is proportional to .
The complex analogue of this function is
nag_lapack_zpttrs (f07js).
Example
This example solves the equations
where
is the symmetric positive definite tridiagonal matrix
Open in the MATLAB editor:
f07je_example
function f07je_example
fprintf('f07je example results\n\n');
d = [ 4 10 29 25 5];
e = [-2 -6 15 8 ];
b = [ 6, 10;
9, 4;
2, 9;
14, 65;
7, 23];
[df, ef, info] = f07jd( ...
d, e);
%Solve
[x, info] = f07je( ...
df, ef, b);
disp('Solution(s)');
disp(x);
f07je example results
Solution(s)
2.5000 2.0000
2.0000 -1.0000
1.0000 -3.0000
-1.0000 6.0000
3.0000 -5.0000
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015