f08atf generates all or part of the complex unitary matrix
from a
factorization computed by
f08asf or
f08btf.
f08atf is intended to be used after a call to
f08asf or
f08btf, which perform a
factorization of a complex matrix
. The unitary matrix
is represented as a product of elementary reflectors.
Usually
is determined from the
factorization of an
matrix
with
. The whole of
may be computed by
:
Call zungqr(m,m,p,a,lda,tau,work,lwork,info)
(note that the array
a must have at least
columns)
or its leading
columns by
:
Call zungqr(m,p,p,a,lda,tau,work,lwork,info)
The columns of
returned by the last call form an orthonormal basis for the space spanned by the columns of
; thus
f08asf followed by
f08atf can be used to orthogonalize the columns of
.
The information returned by the
factorization routines also yields the
factorization of the leading
columns of
, where
. The unitary matrix arising from this factorization can be computed by
:
Call zungqr(m,m,k,a,lda,tau,work,lwork,info)
or its leading
columns by
:
Call zungqr(m,k,k,a,lda,tau,work,lwork,info)
The computed matrix
differs from an exactly unitary matrix 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
f08aff.
This example forms the leading
columns of the unitary matrix
from the
factorization of the matrix
, where
The columns of
form an orthonormal basis for the space spanned by the columns of
.