PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgesv (f07aa)
Purpose
nag_lapack_dgesv (f07aa) computes the solution to a real system of linear equations
where
is an
by
matrix and
and
are
by
matrices.
Syntax
Description
nag_lapack_dgesv (f07aa) uses the
decomposition with partial pivoting and row interchanges to factor
as
where
is a permutation matrix,
is unit lower triangular, and
is upper triangular. 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:
– 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 coefficient matrix .
- 2:
– 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 array
b.
, 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
.
The factors and from the factorization ; the unit diagonal elements of are not stored.
- 2:
– int64int32nag_int array
-
If no constraints are violated, 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 , the by solution matrix .
- 4:
– 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, so the solution could not be computed.
Accuracy
The computed solution for a single right-hand side,
, satisfies the 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
nag_lapack_dgesv (f07aa),
nag_lapack_dgecon (f07ag) can be used to estimate the condition number of
and
nag_lapack_dgerfs (f07ah) can be used to obtain approximate error bounds. Alternatives to
nag_lapack_dgesv (f07aa), which return condition and error estimates directly are
nag_linsys_real_square_solve (f04ba) and
nag_lapack_dgesvx (f07ab).
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_zgesv (f07an).
Example
This example solves the equations
where
is the general matrix
Details of the factorization of are also output.
Open in the MATLAB editor:
f07aa_example
function f07aa_example
fprintf('f07aa example results\n\n');
a = [ 1.80, 2.88, 2.05, -0.89;
5.25, -2.95, -0.95, -3.80;
1.58, -2.69, -2.90, -1.04;
-1.11, -0.66, -0.59, 0.80];
b = [ 9.52;
24.35;
0.77;
-6.22];
[LU, ipiv, x, info] = f07aa(a, b);
disp('Solution');
disp(x');
disp('Details of factorization');
disp(LU);
disp('Pivot indices');
disp(double(ipiv'));
f07aa example results
Solution
1.0000 -1.0000 3.0000 -5.0000
Details of factorization
5.2500 -2.9500 -0.9500 -3.8000
0.3429 3.8914 2.3757 0.4129
0.3010 -0.4631 -1.5139 0.2948
-0.2114 -0.3299 0.0047 0.1314
Pivot indices
2 2 3 4
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015