PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dggqrf (f08ze)
Purpose
nag_lapack_dggqrf (f08ze) computes a generalized factorization of a real matrix pair , where is an by matrix and is an by matrix.
Syntax
[
a,
taua,
b,
taub,
info] = f08ze(
a,
b, 'n',
n, 'm',
m, 'p',
p)
[
a,
taua,
b,
taub,
info] = nag_lapack_dggqrf(
a,
b, 'n',
n, 'm',
m, 'p',
p)
Description
nag_lapack_dggqrf (f08ze) forms the generalized
factorization of an
by
matrix
and an
by
matrix
where
is an
by
orthogonal matrix,
is a
by
orthogonal matrix and
and
are of the form
with
upper triangular,
with
or
upper triangular.
In particular, if
is square and nonsingular, the generalized
factorization of
and
implicitly gives the
factorization of
as
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
Anderson E, Bai Z and Dongarra J (1992) Generalized QR factorization and its applications Linear Algebra Appl. (Volume 162–164) 243–271
Hammarling S (1987) The numerical solution of the general Gauss-Markov linear model Mathematics in Signal Processing (eds T S Durrani, J B Abbiss, J E Hudson, R N Madan, J G McWhirter and T A Moore) 441–456 Oxford University Press
Paige C C (1990) Some aspects of generalized factorizations . In Reliable Numerical Computation (eds M G Cox and S Hammarling) 73–91 Oxford University Press
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 .
- 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 matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
a,
b. (An error is raised if these dimensions are not equal.)
, the number of rows of the matrices and .
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 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 elements on and above the diagonal of the array contain the
by
upper trapezoidal matrix
(
is upper triangular if
); the elements below the diagonal, with the array
taua, represent the orthogonal matrix
as a product of
elementary reflectors (see
Representation of orthogonal or unitary matrices in the F08 Chapter Introduction).
- 2:
– double array
-
The scalar factors of the elementary reflectors which represent the orthogonal matrix .
- 3:
– double array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
If
, the upper triangle of the subarray
contains the
by
upper triangular matrix
.
If
, the elements on and above the
th subdiagonal contain the
by
upper trapezoidal matrix
; the remaining elements, with the array
taub, represent the orthogonal matrix
as a product of elementary reflectors (see
Representation of orthogonal or unitary matrices in the F08 Chapter Introduction).
- 4:
– double array
-
The scalar factors of the elementary reflectors which represent the orthogonal matrix .
- 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:
n, 2:
m, 3:
p, 4:
a, 5:
lda, 6:
taua, 7:
b, 8:
ldb, 9:
taub, 10:
work, 11:
lwork, 12:
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 generalized
factorization is the exact factorization for nearby matrices
and
, where
and
is the
machine precision.
Further Comments
The orthogonal matrices
and
may be formed explicitly by calls to
nag_lapack_dorgqr (f08af) and
nag_lapack_dorgrq (f08cj) respectively.
nag_lapack_dormqr (f08ag) may be used to multiply
by another matrix and
nag_lapack_dormrq (f08ck) may be used to multiply
by another matrix.
The complex analogue of this function is
nag_lapack_zggqrf (f08zs).
Example
This example solves the general Gauss–Markov linear model problem
where
The solution is obtained by first computing a generalized factorization of the matrix pair . The example illustrates the general solution process, although the above data corresponds to a simple weighted least squares problem.
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:
f08ze_example
function f08ze_example
fprintf('f08ze example results\n\n');
a = [-0.57, -1.28, -0.39;
-1.93, 1.08, -0.31;
2.3, 0.24, -0.4;
-0.02, 1.03, -1.43];
b = [0.5, 0, 0, 0;
0, 1, 0, 0;
0, 0, 2, 0;
0, 0, 0, 5];
d = [1.32; -4.00; 5.52; 3.24];
n = 4;
m = 3;
p = 4;
[a, taua, b, taub, info] = f08ze( ...
a, b);
[c, info] = f08ag( ...
'Left', 'Transpose', a, taua, d);
y = zeros(p, 1);
if n > m
y2 = m+p-n+1:p;
[y(y2), info] = ...
f07te( ...
'Upper', 'No transpose', 'Non-unit', b(m+1:n, y2), c(m+1:n));
rnorm = norm(y(y2), 1);
c = c - b(:,y2)*y(y2);
end
[c(1:m), info] = f07te( ...
'Upper', 'No transpose', 'Non-unit', a(1:m,:), c(1:m));
b1 = max(1, n-p+1):n;
[b(b1,:), y, info] = f08ck( ...
'Left', 'Transpose', b(b1,:), taub, y);
fprintf('Generalized least squares solution\n');
fprintf('%12.4f',c(1:m));
fprintf('\n\nResidual vector\n ');
fprintf('%12.2e',y);
fprintf('\n\nSquare root of the residual sum of squares\n %12.2e\n', ...
rnorm);
f08ze example results
Generalized least squares solution
1.9889 -1.0058 -2.9911
Residual vector
-6.37e-04 -2.45e-03 -4.72e-03 7.70e-03
Square root of the residual sum of squares
9.38e-03
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015