PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgelsd (f08kc)
Purpose
nag_lapack_dgelsd (f08kc) computes the minimum norm solution to a real linear least squares problem
Syntax
[
a,
b,
s,
rank,
info] = f08kc(
a,
b,
rcond, 'm',
m, 'n',
n, 'nrhs_p',
nrhs_p)
[
a,
b,
s,
rank,
info] = nag_lapack_dgelsd(
a,
b,
rcond, 'm',
m, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_dgelsd (f08kc) uses the singular value decomposition (SVD) of , where is a real by matrix which may be rank-deficient.
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 .
The problem is solved in three steps:
1. |
reduce the coefficient matrix to bidiagonal form with Householder transformations, reducing the original problem into a ‘bidiagonal least squares problem’ (BLS); |
2. |
solve the BLS using a divide-and-conquer approach; |
3. |
apply back all the Householder transformations to solve the original least squares problem. |
The effective rank of
is determined by treating as zero those singular values which are less than
rcond times the largest singular value.
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 .
- 3:
– double scalar
-
Used to determine the effective rank of
. Singular values
are treated as zero. If
,
machine precision is used instead.
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
.
The contents of
a are destroyed.
- 2:
– double array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
b stores the
by
solution matrix
. If
and
, the residual sum of squares for the solution in the
th column is given by the sum of squares of elements
in that column.
- 3:
– double array
-
The dimension of the array
s will be
The singular values of in decreasing order.
- 4:
– int64int32nag_int scalar
-
The effective rank of , i.e., the number of singular values which are greater than .
- 5:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
m, 2:
n, 3:
nrhs_p, 4:
a, 5:
lda, 6:
b, 7:
ldb, 8:
s, 9:
rcond, 10:
rank, 11:
work, 12:
lwork, 13:
iwork, 14:
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.
-
-
The algorithm for computing the SVD failed to converge; if , off-diagonal elements of an intermediate bidiagonal form did not converge to zero.
Accuracy
See Section 4.5 of
Anderson et al. (1999) for details.
Further Comments
The complex analogue of this function is
nag_lapack_zgelsd (f08kq).
Example
This example solves the linear least squares problem
for the solution,
, of minimum norm, where
A tolerance of is used to determine the effective rank of .
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:
f08kc_example
function f08kc_example
fprintf('f08kc example results\n\n');
a = [-0.09, -1.56, -1.48, -1.09, 0.08, -1.59;
0.14, 0.20, -0.43, 0.84, 0.55, -0.72;
-0.46, 0.29, 0.89, 0.77, -1.13, 1.06;
0.68, 1.09, -0.71, 2.11, 0.14, 1.24;
1.29, 0.51, -0.96, -1.27, 1.74, 0.34];
[m,n] = size(a);
b = [ 7.4;
4.3;
-8.1;
1.8;
8.7;
0.0];
rcond = 0.01;
[vr, x, s, rank, info] = f08kc( ...
a, b, rcond);
disp('Least squares solution');
disp(x(1:n)');
disp('Tolerance used to estimate the rank of A');
fprintf('%12.2e\n',rcond);
disp('Estimated rank of A');
fprintf('%5d\n\n',rank);
disp('Singular values of A');
disp(s');
f08kc example results
Least squares solution
1.5938 -0.1180 -3.1501 0.1554 2.5529 -1.6730
Tolerance used to estimate the rank of A
1.00e-02
Estimated rank of A
4
Singular values of A
3.9997 2.9962 2.0001 0.9988 0.0025
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015