PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dposv (f07fa)
Purpose
nag_lapack_dposv (f07fa) computes the solution to a real system of linear equations
where
is an
by
symmetric positive definite matrix and
and
are
by
matrices.
Syntax
Description
nag_lapack_dposv (f07fa) uses the Cholesky decomposition to factor as if or if , where is an upper triangular matrix and is a lower triangular matrix. 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:
– double array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The
by
symmetric matrix
.
- If , the upper triangular part of must be stored and the elements of the array below the diagonal are not referenced.
- If , the lower triangular part of must be stored and the elements of the array above the diagonal are not referenced.
- 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 right-hand side matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
a,
b and the second dimension of the array
a.
, 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
a will be
.
The second dimension of the array
a will be
.
If , the factor or from the Cholesky factorization or .
- 2:
– double 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_dposvx (f07fb) is a comprehensive LAPACK driver that returns forward and backward error bounds and an estimate of the condition number. Alternatively,
nag_linsys_real_posdef_solve (f04bd) solves
and returns a forward error bound and condition estimate.
nag_linsys_real_posdef_solve (f04bd) calls
nag_lapack_dposv (f07fa) to solve the equations.
Further Comments
The total number of floating-point operations is approximately , where is the number of right-hand sides.
The complex analogue of this function is
nag_lapack_zposv (f07fn).
Example
This example solves the equations
where
is the symmetric positive definite matrix
Details of the Cholesky factorization of are also output.
Open in the MATLAB editor:
f07fa_example
function f07fa_example
fprintf('f07fa example results\n\n');
uplo = 'Upper';
a = [4.16, -3.12, 0.56, -0.10;
0, 5.03, -0.83, 1.18;
0, 0, 0.76, 0.34;
0, 0, 0, 1.18];
b = [8.7; -13.35; 1.89; -4.14];
[af, x, info] = f07fa( ...
uplo, a, b);
disp('Solution');
disp(x');
[ifail] = x04ca( ...
uplo, 'Non-unit', af, 'Cholesky factor');
f07fa example results
Solution
1.0000 -1.0000 2.0000 -3.0000
Cholesky factor
1 2 3 4
1 2.0396 -1.5297 0.2746 -0.0490
2 1.6401 -0.2500 0.6737
3 0.7887 0.6617
4 0.5347
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015