PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zggrqf (f08zt)
Purpose
nag_lapack_zggrqf (f08zt) computes a generalized factorization of a complex matrix pair , where is an by matrix and is a by matrix.
Syntax
[
a,
taua,
b,
taub,
info] = f08zt(
a,
b, 'm',
m, 'p',
p, 'n',
n)
[
a,
taua,
b,
taub,
info] = nag_lapack_zggrqf(
a,
b, 'm',
m, 'p',
p, 'n',
n)
Description
nag_lapack_zggrqf (f08zt) forms the generalized
factorization of an
by
matrix
and a
by
matrix
where
is an
by
unitary matrix,
is a
by
unitary matrix and
and
are of the form
with
or
upper triangular,
with
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:
– complex 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:
– complex 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 array
a.
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
b.
, the number of rows of the matrix .
Constraint:
.
- 3:
– int64int32nag_int scalar
-
Default:
the second dimension of the arrays
a,
b.
, the number of columns of the matrices and .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
a will be
.
The second dimension of the array
a 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
taua, represent the unitary matrix
as a product of
elementary reflectors (see
Representation of orthogonal or unitary matrices in the F08 Chapter Introduction).
- 2:
– complex array
-
The scalar factors of the elementary reflectors which represent the unitary matrix .
- 3:
– complex array
-
The first dimension of the array
b will be
.
The second dimension of the array
b 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
taub, represent the unitary matrix
as a product of elementary reflectors (see
Representation of orthogonal or unitary matrices in the F08 Chapter Introduction).
- 4:
– complex array
-
The scalar factors of the elementary reflectors which represent the unitary 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:
m, 2:
p, 3:
n, 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 unitary matrices
and
may be formed explicitly by calls to
nag_lapack_zungrq (f08cw) and
nag_lapack_zungqr (f08at) respectively.
nag_lapack_zunmrq (f08cx) may be used to multiply
by another matrix and
nag_lapack_zunmqr (f08au) may be used to multiply
by another matrix.
The real analogue of this function is
nag_lapack_dggrqf (f08zf).
Example
This example solves the least squares problem
where
The constraints
correspond to
and
.
The solution is obtained by first obtaining 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:
f08zt_example
function f08zt_example
fprintf('f08zt example results\n\n');
m = int64(6);
n = int64(4);
p = int64(2);
a = [ 0.96-0.81i -0.03+0.96i -0.91+2.06i -0.05+0.41i;
-0.98+1.98i -1.20+0.19i -0.66+0.42i -0.81+0.56i;
0.62-0.46i 1.01+0.02i 0.63-0.17i -1.11+0.60i;
0.37+0.38i 0.19-0.54i -0.98-0.36i 0.22-0.20i;
0.83+0.51i 0.20+0.01i -0.17-0.46i 1.47+1.59i;
1.08-0.28i 0.20-0.12i -0.07+1.23i 0.26+0.26i];
b = complex([ 1 0 -1 0;
0 1 0 -1]);
c = [-2.54+0.09i;
1.65-2.26i;
-2.11-3.96i;
1.82+3.30i;
-6.41+3.77i;
2.07+0.66i];
d = complex([0;0]);
[TQ, taub, ZR, taua, info] = f08zt(b, a);
[cup, info] = f08au( ...
'Left','Conjugate Transpose',ZR,taua,c);
T12 = complex(triu(TQ(1:p,n-p+1:n)));
[y2, info] = f07ts( ...
'Upper', 'No transpose', 'Non-unit', T12, d);
c1 = cup(1:n-p) - ZR(1:n-p,n-p+1:n)*y2;
R11 = complex(triu(ZR(1:n-p,1:n-p)));
[y1, info] = f07ts( ...
'Upper', 'No transpose', 'Non-unit', R11, c1);
y = [y1;y2];
[~, x, info] = f08cx( ...
'Left', 'Conjugate Transpose', TQ, taub, y);
disp('Constrained least squares solution');
disp(x);
res = a*x - c;
fprintf('Square root of the residual sum of squares\n%11.2e\n', ...
norm(res));
f08zt example results
Constrained least squares solution
1.0874 - 1.9621i
-0.7409 + 3.7297i
1.0874 - 1.9621i
-0.7409 + 3.7297i
Square root of the residual sum of squares
1.59e-01
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015