PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_ztpqrt (f08bp)
Purpose
nag_lapack_ztpqrt (f08bp) computes the factorization of a complex by triangular-pentagonal matrix.
Syntax
[
a,
b,
t,
info] = f08bp(
l,
nb,
a,
b, 'm',
m, 'n',
n)
[
a,
b,
t,
info] = nag_lapack_ztpqrt(
l,
nb,
a,
b, 'm',
m, 'n',
n)
Description
nag_lapack_ztpqrt (f08bp) forms the
factorization of a complex
by
triangular-pentagonal matrix
,
where
is an upper triangular
by
matrix and
is an
by
pentagonal matrix consisting of an
by
rectangular matrix
on top of an
by
upper trapezoidal matrix
:
The upper trapezoidal matrix consists of the first rows of an by upper triangular matrix, where . If , is by rectangular; if and , is upper triangular.
A recursive, explicitly blocked,
factorization (see
nag_lapack_zgeqrt (f08ap)) is performed on the matrix
. The upper triangular matrix
, details of the unitary matrix
, and further details (the block reflector factors) of
are returned.
Typically the matrix or contains the matrix from the factorization of a subproblem and nag_lapack_ztpqrt (f08bp) performs the update operation from the inclusion of matrix .
For example, consider the
factorization of an
by
matrix
with
:
,
, where
is
by
upper triangular and
is
by
rectangular (this can be performed by
nag_lapack_zgeqrt (f08ap)). Given an initial least-squares problem
where
and
are
by
matrices, we have
.
Now, adding an additional
rows to the original system gives the augmented least squares problem
where
is an
by
matrix formed by adding
rows on top of
and
is an
by
matrix formed by adding
rows on top of
.
nag_lapack_ztpqrt (f08bp) can then be used to perform the factorization of the pentagonal matrix ; the by matrix will be zero on input and contain on output.
In the case where is by , , is by upper triangular (forming ) on top of rows of zeros (forming first rows of ). Augmentation is then performed by adding rows to the bottom of with .
References
Elmroth E and Gustavson F (2000) Applying Recursion to Serial and Parallel Factorization Leads to Better Performance IBM Journal of Research and Development. (Volume 44) 4 605–624
Golub G H and Van Loan C F (2012) Matrix Computations (4th Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
, the number of rows of the trapezoidal part of (i.e., ).
Constraint:
.
- 2:
– int64int32nag_int scalar
-
The explicitly chosen block-size to be used in the algorithm for computing the
factorization. See
Further Comments for details.
- 3:
– 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 upper triangular matrix .
- 4:
– 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 pentagonal matrix composed of an by rectangular matrix above an by upper trapezoidal matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
b.
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a and the second dimension of the arrays
a,
b. (An error is raised if these dimensions are not equal.)
, the number of columns of the matrix and the order of the upper triangular matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
The upper triangle stores the corresponding elements of the by upper triangular matrix .
- 2:
– complex array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
Details of the unitary matrix .
- 3:
– complex array
-
The first dimension of the array
t will be
.
The second dimension of the array
t will be
.
Further details of the unitary matrix
. The number of blocks is
, where
and each block is of order
nb except for the last block, which is of order
. For each of the blocks, an upper triangular block reflector factor is computed:
. These are stored in the
by
matrix
as
.
- 4:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
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 .
The block size,
nb, used by
nag_lapack_ztpqrt (f08bp) is supplied explicitly through the interface. For moderate and large sizes of matrix, the block size can have a marked effect on the efficiency of the algorithm with the optimal value being dependent on problem size and platform. A value of
is likely to achieve good efficiency and it is unlikely that an optimal value would exceed
.
To apply
to an arbitrary complex rectangular matrix
,
nag_lapack_ztpqrt (f08bp) may be followed by a call to
nag_lapack_ztpmqrt (f08bq). For example,
[t, c, info] = f08bq('Left','Transpose', nb, a(:,1:min(m,n)), t, c);
forms
, where
is
by
.
To form the unitary matrix
explicitly set
, initialize
to the identity matrix and make a call to
nag_lapack_ztpmqrt (f08bq) as above.
Example
This example finds the basic solutions for the linear least squares problems
where
and
are the columns of the matrix
,
A
factorization is performed on the first
rows of
using
nag_lapack_zgeqrt (f08ap) after which the first
rows of
are updated by applying
using
nag_lapack_zgemqrt (f08aq). The remaining row is added by performing a
update using
nag_lapack_ztpqrt (f08bp);
is updated by applying the new
using
nag_lapack_ztpmqrt (f08bq); the solution is finally obtained by triangular solve using
from the updated
.
Open in the MATLAB editor:
f08bp_example
function f08bp_example
fprintf('f08bp 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 = [-2.09 + 1.93i, 3.26-2.70i;
3.34 - 3.53i, -6.22+1.16i;
-4.94 - 2.04i, 7.94-3.13i;
0.17 + 4.23i, 1.04-4.26i;
-5.19 + 3.63i, -2.31-2.12i;
0.98 + 2.53i, -1.39-4.05i];
nb = n;
[QRn, Tn, info] = f08ap( ...
nb,a(1:n,:));
[c1, info] = f08aq( ...
'Left', 'Conjugate Transpose', QRn, Tn, b(1:n,:));
[x, info] = f07ts( ...
'Upper', 'No Transpose', 'Non-Unit', QRn, c1);
disp('Solution for n rows');
disp(x(1:n,:));
nb2 = m-n;
l = int64(0);
[R, Q, T, info] = f08bp( ...
l, nb2, QRn, a(n+1:m,:));
[c1,c2,info] = f08bq( ...
'Left','Conjugate Transpose', l, Q, T, c1, b(n+1:m,:));
[x, info] = f07ts( ...
'Upper', 'No transpose', 'Non-Unit', R, c1);
disp('Least squares solution');
disp(x(1:n,:));
for j=1:p
rnorm(j) = norm(c2(:,j));
end
fprintf('Square roots of the residual sums of squares\n');
fprintf('%12.2e', rnorm);
fprintf('\n');
f08bp example results
Solution for n rows
-0.5091 - 1.2428i 0.7569 + 1.4384i
-2.3789 + 2.8651i 5.1727 - 3.6193i
1.4634 - 2.2064i -2.6613 + 2.1339i
0.4701 + 2.6964i -2.6933 + 0.2724i
Least squares solution
-0.5044 - 1.2179i 0.7629 + 1.4529i
-2.4281 + 2.8574i 5.1570 - 3.6089i
1.4872 - 2.1955i -2.6518 + 2.1203i
0.4537 + 2.6904i -2.7606 + 0.3318i
Square roots of the residual sums of squares
6.88e-02 1.87e-01
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015