PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgels (f08aa)
Purpose
nag_lapack_dgels (f08aa) solves linear least squares problems of the form
where
is an
by
real matrix of full rank, using a
or
factorization of
.
Syntax
[
a,
b,
info] = f08aa(
trans,
a,
b, 'm',
m, 'n',
n, 'nrhs_p',
nrhs_p)
[
a,
b,
info] = nag_lapack_dgels(
trans,
a,
b, 'm',
m, 'n',
n, 'nrhs_p',
nrhs_p)
Description
The following options are provided:
1. |
If and : find the least squares solution of an overdetermined system, i.e., solve the least squares problem
|
2. |
If and : find the minimum norm solution of an underdetermined system . |
3. |
If and : find the minimum norm solution of an undetermined system . |
4. |
If and : find the least squares solution of an overdetermined system, i.e., solve the least squares problem
|
Several right-hand side vectors and solution vectors can be handled in a single call; they are stored as the columns of the by right-hand side matrix and the by solution 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
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 linear system involves
.
If , the linear system involves .
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 matrix .
- 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 matrix
of right-hand side vectors, stored in columns;
b is
by
if
, or
by
if
.
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a.
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
a.
, the number of columns of the matrix .
Constraint:
.
- 3:
– 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 matrices and .
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
,
a stores details of its
factorization, as returned by
nag_lapack_dgeqrf (f08ae).
If
,
a stores details of its
factorization, as returned by
nag_lapack_dgelqf (f08ah).
- 2:
– double array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
b stores the solution vectors,
, stored in columns:
- if and , or and , elements to in each column of b contain the least squares solution vectors; the residual sum of squares for the solution is given by the sum of squares of the modulus of elements to in that column;
- otherwise, elements to in each column of b contain the minimum norm solution vectors.
- 3:
– 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 , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
trans, 2:
m, 3:
n, 4:
nrhs_p, 5:
a, 6:
lda, 7:
b, 8:
ldb, 9:
work, 10:
lwork, 11:
info.
It is possible that
info refers to a parameter that is omitted from the MATLAB interface. This usually indicates that an error in one of the other input parameters has caused an incorrect value to be inferred.
- W
-
If , diagonal element of the triangular factor of is zero, so that does not have full rank; the least squares solution could not be computed.
Accuracy
See Section 4.5 of
Anderson et al. (1999) for details of error bounds.
Further Comments
The total number of floating-point operations required to factorize is approximately if and otherwise. Following the factorization the solution for a single vector requires operations.
The complex analogue of this function is
nag_lapack_zgels (f08an).
Example
This example solves the linear least squares problem
where
The square root of the residual sum of squares is also output.
Note that the block size (NB) of assumed in this example is not realistic for such a small problem, but should be suitable for large problems.
Open in the MATLAB editor:
f08aa_example
function f08aa_example
fprintf('f08aa example results\n\n');
a = [-0.57, -1.28, -0.39, 0.25;
-1.93, 1.08, -0.31, -2.14;
2.30, 0.24, 0.40, -0.35;
-1.93, 0.64, -0.66, 0.08;
0.15, 0.30, 0.15, -2.13;
-0.02, 1.03, -1.43, 0.50];
b = [-2.67;
-0.55;
3.34;
-0.77;
0.48;
4.1];
[m,n] = size(a);
trans = 'No transpose';
[af, x, info] = f08aa(trans, a, b);
disp('Least squares solution');
disp(x(1:n)');
rnorm = norm(x(n+1:m));
fprintf('Square root of the residual sum of squares = %11.2e\n', rnorm);
f08aa example results
Least squares solution
1.5339 1.8707 -1.5241 0.0392
Square root of the residual sum of squares = 2.22e-02
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015