f08cuf multiplies a general complex
matrix
by the complex unitary matrix
from a
factorization computed by
f08csf.
f08cuf is intended to be used following a call to
f08csf, which performs a
factorization of a complex matrix
and represents the unitary matrix
as a product of elementary reflectors.
This routine may be used to form one of the matrix products
overwriting the result on
, which may be any complex rectangular
matrix.
A common application of this routine is in solving linear least squares problems, as described in the
F08 Chapter Introduction, and illustrated in
Section 10 in
f08csf.
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
https://www.netlib.org/lapack/lug
-
1:
– Character(1)
Input
-
On entry: 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:
– Character(1)
Input
-
On entry: indicates whether
or
is to be applied to
.
- is applied to .
- is applied to .
Constraint:
or .
-
3:
– Integer
Input
-
On entry: , the number of rows of the matrix .
Constraint:
.
-
4:
– Integer
Input
-
On entry: , the number of columns of the matrix .
Constraint:
.
-
5:
– Integer
Input
-
On entry: , the number of elementary reflectors whose product defines the matrix .
Constraints:
- if , ;
- if , .
-
6:
– Complex (Kind=nag_wp) array
Input
-
Note: the second dimension of the array
a
must be at least
.
On entry: details of the vectors which define the elementary reflectors, as returned by
f08csf.
On exit: is modified by f08cuf but restored on exit.
-
7:
– Integer
Input
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f08cuf is called.
Constraints:
- if , ;
- if , .
-
8:
– Complex (Kind=nag_wp) array
Input
-
Note: the dimension of the array
tau
must be at least
.
On entry: further details of the elementary reflectors, as returned by
f08csf.
-
9:
– Complex (Kind=nag_wp) array
Input/Output
-
Note: the second dimension of the array
c
must be at least
.
On entry: the matrix .
On exit:
c is overwritten by
or
or
or
as specified by
side and
trans.
-
10:
– Integer
Input
-
On entry: the first dimension of the array
c as declared in the (sub)program from which
f08cuf is called.
Constraint:
.
-
11:
– Complex (Kind=nag_wp) array
Workspace
-
On exit: if
, the real part of
contains the minimum value of
lwork required for optimal performance.
-
12:
– Integer
Input
-
On entry: the dimension of the array
work as declared in the (sub)program from which
f08cuf is called.
If
, a workspace query is assumed; the routine only calculates the optimal size of the
work array, returns this value as the first entry of the
work array, and no error message related to
lwork is issued.
Suggested value:
for optimal performance, if and at least if , where is the optimal block size.
Constraints:
- if , or ;
- if , or .
-
13:
– Integer
Output
-
On exit:
unless the routine detects an error (see
Section 6).
The computed result differs from the exact result by a matrix
such that
where
is the
machine precision.
Background information to multithreading can be found in the
Multithreading documentation.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The real analogue of this routine is
f08cgf.