nag_dgelsd (f08kcc) computes the minimum norm solution to a real linear least squares problem
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.
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
- 1:
order – Nag_OrderTypeInput
-
On entry: the
order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by
. See
Section 3.2.1.3 in the Essential Introduction for a more detailed explanation of the use of this argument.
Constraint:
or .
- 2:
m – IntegerInput
On entry: , the number of rows of the matrix .
Constraint:
.
- 3:
n – IntegerInput
On entry: , the number of columns of the matrix .
Constraint:
.
- 4:
nrhs – IntegerInput
On entry: , the number of right-hand sides, i.e., the number of columns of the matrices and .
Constraint:
.
- 5:
a[] – doubleInput/Output
-
Note: the dimension,
dim, of the array
a
must be at least
- when
;
- when
.
The
th element of the matrix
is stored in
- when ;
- when .
On entry: the by coefficient matrix .
On exit: the contents of
a are destroyed.
- 6:
pda – IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
a.
Constraints:
- if ,
;
- if , .
- 7:
b[] – doubleInput/Output
-
Note: the dimension,
dim, of the array
b
must be at least
- when
;
- when
.
The
th element of the matrix
is stored in
- when ;
- when .
On entry: the by right-hand side matrix .
On exit:
b is overwritten by 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.
- 8:
pdb – IntegerInput
-
On entry: the stride separating row or column elements (depending on the value of
order) in the array
b.
Constraints:
- if ,
;
- if , .
- 9:
s[] – doubleOutput
-
Note: the dimension,
dim, of the array
s
must be at least
.
On exit: the singular values of in decreasing order.
- 10:
rcond – doubleInput
On entry: used to determine the effective rank of . Singular values are treated as zero. If , machine precision is used instead.
- 11:
rank – Integer *Output
On exit: the effective rank of , i.e., the number of singular values which are greater than .
- 12:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_CONVERGENCE
-
The algorithm for computing the SVD failed to converge; off-diagonal elements of an intermediate bidiagonal form did not converge to zero.
- NE_INT
-
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
- NE_INT_2
-
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
- NE_INT_3
-
On entry, , and .
Constraint: .
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
nag_dgelsd (f08kcc) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
nag_dgelsd (f08kcc) makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
Users' Note for your implementation for any additional implementation-specific information.
The complex analogue of this function is
nag_zgelsd (f08kqc).
This example solves the linear least squares problem
for the solution,
, of minimum norm, where