PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zunmlq (f08ax)
Purpose
nag_lapack_zunmlq (f08ax) multiplies an arbitrary complex matrix
by the complex unitary matrix
from an
factorization computed by
nag_lapack_zgelqf (f08av).
Syntax
[
c,
info] = f08ax(
side,
trans,
a,
tau,
c, 'm',
m, 'n',
n, 'k',
k)
[
c,
info] = nag_lapack_zunmlq(
side,
trans,
a,
tau,
c, 'm',
m, 'n',
n, 'k',
k)
Description
nag_lapack_zunmlq (f08ax) is intended to be used after a call to
nag_lapack_zgelqf (f08av), which performs an
factorization of a complex matrix
. The unitary matrix
is represented as a product of elementary reflectors.
This function may be used to form one of the matrix products
overwriting the result on
(which may be any complex rectangular matrix).
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Indicates how
or
is to be applied to
.
- or is applied to from the left.
- or is applied to from the right.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Indicates whether
or
is to be applied to
.
- is applied to .
- is applied to .
Constraint:
or .
- 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
if
and at least
if
.
Details of the vectors which define the elementary reflectors, as returned by
nag_lapack_zgelqf (f08av).
- 4:
– complex array
-
The dimension of the array
tau
must be at least
Further details of the elementary reflectors, as returned by
nag_lapack_zgelqf (f08av).
- 5:
– complex array
-
The first dimension of the array
c must be at least
.
The second dimension of the array
c must be at least
.
The by matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
c.
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
c.
, the number of columns of the matrix .
Constraint:
.
- 3:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a and the dimension of the array
tau.
, the number of elementary reflectors whose product defines the matrix .
Constraints:
- if , ;
- if , .
Output Parameters
- 1:
– complex array
-
The first dimension of the array
c will be
.
The second dimension of the array
c will be
.
c stores
or
or
or
as specified by
side and
trans.
- 2:
– 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:
side, 2:
trans, 3:
m, 4:
n, 5:
k, 6:
a, 7:
lda, 8:
tau, 9:
c, 10:
ldc, 11:
work, 12:
lwork, 13:
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 result differs from the exact result by a matrix
such that
where
is the
machine precision.
Further Comments
The total number of real floating-point operations is approximately if and if .
The real analogue of this function is
nag_lapack_dormlq (f08ak).
Example
See
Example in
nag_lapack_zgelqf (f08av).
Open in the MATLAB editor:
f08ax_example
function f08ax_example
fprintf('f08ax example results\n\n');
m = 3;
n = 4;
a = [ 0.28 - 0.36i, 0.50 - 0.86i, -0.77 - 0.48i, 1.58 + 0.66i;
-0.50 - 1.10i, -1.21 + 0.76i, -0.32 - 0.24i, -0.27 - 1.15i;
0.36 - 0.51i, -0.07 + 1.33i, -0.75 + 0.47i, -0.08 + 1.01i];
nrhs = 2;
b = [-1.35 + 0.19i, 4.83 - 2.67i;
9.41 - 3.56i, -7.28 + 3.34i;
-7.57 + 6.93i, 0.62 + 4.53i];
[lq, tau, info] = f08av(a);
[y, info] = f07ts(...
'Lower', 'No trans', 'Non-Unit', lq(1:m,1:m), b);
y(m+1:n,1:nrhs) = 0 + 0i;
side = 'Left';
trans = 'Conjugate transpose';
[x, info] = f08ax(side, trans, lq, tau, y);
disp('Mimimum norm soltion:');
disp(x);
f08ax example results
Mimimum norm soltion:
-2.8501 + 6.4683i -1.1682 - 1.8886i
1.6264 - 0.7799i 2.8377 + 0.7654i
6.9290 + 4.6481i -1.7610 - 0.7041i
1.4048 + 3.2400i 1.0518 - 1.6365i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015