PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgelqf (f08ah)
Purpose
nag_lapack_dgelqf (f08ah) computes the factorization of a real by matrix.
Syntax
Description
nag_lapack_dgelqf (f08ah) forms the factorization of an arbitrary rectangular real by matrix. No pivoting is performed.
If
, the factorization is given by:
where
is an
by
lower triangular matrix and
is an
by
orthogonal matrix. It is sometimes more convenient to write the factorization as
which reduces to
where
consists of the first
rows of
, and
the remaining
rows.
If
,
is trapezoidal, and the factorization can be written
where
is lower triangular and
is rectangular.
The
factorization of
is essentially the same as the
factorization of
, since
The matrix
is not formed explicitly but is represented as a product of
elementary reflectors (see the
F08 Chapter Introduction for details). Functions are provided to work with
in this representation (see
Further Comments).
Note also that for any
, the information returned in the first
rows of the array
a represents an
factorization of the first
rows of the original matrix
.
References
None.
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 matrix .
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:
.
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 elements above the diagonal store details of the orthogonal matrix
and the lower triangle stores the corresponding elements of the
by
lower triangular matrix
.
If , the strictly upper triangular part stores details of the orthogonal matrix and the remaining elements store the corresponding elements of the by lower trapezoidal matrix .
- 2:
– double array
-
The dimension of the array
tau will be
Further details of the orthogonal matrix .
- 3:
– 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:
a, 4:
lda, 5:
tau, 6:
work, 7:
lwork, 8:
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.
Accuracy
The computed factorization is the exact factorization of a nearby matrix
, where
and
is the
machine precision.
Further Comments
The total number of floating-point operations is approximately if or if .
To form the orthogonal matrix
nag_lapack_dgelqf (f08ah) may be followed by a call to
nag_lapack_dorglq (f08aj):
[a, info] = f08aj(a, tau, 'k', min(m,n));
but note that the first dimension of the array
a, specified by the argument
lda, must be at least
n, which may be larger than was required by
nag_lapack_dgelqf (f08ah).
When
, it is often only the first
rows of
that are required, and they may be formed by the call:
[a, info] = f08aj(a, tau, 'k', m);
To apply
to an arbitrary real rectangular matrix
,
nag_lapack_dgelqf (f08ah) may be followed by a call to
nag_lapack_dormlq (f08ak). For example,
[c, info] = f08ak('Left', 'Transpose', a, tau, c, 'k', min(m, n));
forms the matrix product , where is by .
The complex analogue of this function is
nag_lapack_zgelqf (f08av).
Example
This example finds the minimum norm solutions of the under-determined systems of linear equations
where
and
are the columns of the matrix
,
Open in the MATLAB editor:
f08ah_example
function f08ah_example
fprintf('f08ah example results\n\n');
a = [-5.42, 3.28, -3.68, 0.27, 2.06, 0.46;
-1.65, -3.4, -3.2, -1.03, -4.06, -0.01;
-0.37, 2.35, 1.9, 4.31, -1.76, 1.13;
-3.15, -0.11, 1.99, -2.7, 0.26, 4.5];
b = [-2.87, -5.23;
1.63, 0.29;
-3.52, 4.76;
0.45, -8.41;
0, 0;
0, 0];
[a, tau, info] = f08ah(a);
l = tril(a(:, 1:4));
b(1:4,:) = inv(l)*b(1:4,:);
[x, info] = f08ak( ...
'Left', 'Transpose', a, tau, b);
mtitle = 'Minimum-norm solution(s)';
[ifail] = x04ca( ...
'General', ' ', x, mtitle);
f08ah example results
Minimum-norm solution(s)
1 2
1 0.2371 0.7383
2 -0.4575 0.0158
3 -0.0085 -0.0161
4 -0.5192 1.0768
5 0.0239 -0.6436
6 -0.0543 -0.6613
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015