PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgeqrt (f08ab)
Purpose
nag_lapack_dgeqrt (f08ab) recursively computes, with explicit blocking, the factorization of a real by matrix.
Syntax
[
a,
t,
info] = nag_lapack_dgeqrt(
nb,
a, 'm',
m, 'n',
n)
Description
nag_lapack_dgeqrt (f08ab) forms the factorization of an arbitrary rectangular real by matrix. No pivoting is performed.
It differs from
nag_lapack_dgeqrf (f08ae) in that it: requires an explicit block size; stores reflector factors that are upper triangular matrices of the chosen block size (rather than scalars); and recursively computes the
factorization based on the algorithm of
Elmroth and Gustavson (2000).
If
, the factorization is given by:
where
is an
by
upper 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
columns of
, and
the remaining
columns.
If
,
is upper trapezoidal, and the factorization can be written
where
is upper triangular and
is rectangular.
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 represents a factorization of the first columns of the original matrix .
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 explicitly chosen block size to be used in computing the
factorization. See
Further Comments for details.
Constraints:
- ;
- if , .
- 2:
– 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 below the diagonal store details of the orthogonal matrix
and the upper triangle stores the corresponding elements of the
by
upper triangular matrix
.
If , the strictly lower triangular part stores details of the orthogonal matrix and the remaining elements store the corresponding elements of the by upper trapezoidal matrix .
- 2:
– double array
-
The first dimension of the array
t will be
.
The second dimension of the array
t will be
.
Further details of the orthogonal 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
.
- 3:
– 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 .
To apply
to an arbitrary real rectangular matrix
,
nag_lapack_dgeqrt (f08ab) may be followed by a call to
nag_lapack_dgemqrt (f08ac). For example,
[t, c, info] = f08ac('Left', 'Transpose', nb, a, t, c, 'k', min(m,n));
forms
, where
is
by
.
To form the orthogonal matrix
explicitly, simply initialize the
by
matrix
to the identity matrix and form
using
nag_lapack_dgemqrt (f08ac) as above.
The block size,
nb, used by
nag_lapack_dgeqrt (f08ab) 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 compute a
factorization with column pivoting, use
nag_lapack_dtpqrt (f08bb) or
nag_lapack_dgeqpf (f08be).
The complex analogue of this function is
nag_lapack_zgeqrt (f08ap).
Example
This example solves the linear least squares problems
where
and
are the columns of the matrix
,
Open in the MATLAB editor:
f08ab_example
function f08ab_example
fprintf('f08ab example results\n\n');
m = int64(6);
n = int64(4);
p = int64(2);
a = [-0.57, -1.28, -0.39, 0.25;
-1.93, 1.08, -0.31, -2.14;
2.30, 0.24, 0.40, -0.35;
-1.93, 0.64, -0.66, 0.08;
0.15, 0.30, 0.15, -2.13;
-0.02, 1.03, -1.43, 0.50];
b = [-2.67, 0.41;
-0.55, -3.10;
3.34, -4.01;
-0.77, 2.76;
0.48, -6.17;
4.10, 0.21];
[QR, T, info] = f08ab(n,a);
[c1, info] = f08ac(...
'Left', 'Transpose', QR, T, b);
[x, info] = f07te(...
'Upper', 'No Transpose', 'Non-Unit', QR, c1, 'n', n);
disp('Least-squares solutions');
disp(x(1:n,:));
for j=1:p
rnorm(j) = norm(x(n+1:m,j));
end
fprintf('Square roots of the residual sums of squares\n');
fprintf('%12.2e', rnorm);
fprintf('\n');
f08ab example results
Least-squares solutions
1.5339 -1.5753
1.8707 0.5559
-1.5241 1.3119
0.0392 2.9585
Square roots of the residual sums of squares
2.22e-02 1.38e-02
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015