F01RGF (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F01RGF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

F01RGF reduces the complex m by n (mn) upper trapezoidal matrix A to upper triangular form by means of unitary transformations.

2  Specification

SUBROUTINE F01RGF ( M, N, A, LDA, THETA, IFAIL)
INTEGER  M, N, LDA, IFAIL
COMPLEX (KIND=nag_wp)  A(LDA,*), THETA(M)

3  Description

The m by nmn upper trapezoidal matrix A given by
A= U X ,
where U is an m by m upper triangular matrix, is factorized as
A= R 0 PH,
where P is an n by n unitary matrix and R is an m by m upper triangular matrix.
P is given as a sequence of Householder transformation matrices
P=PmP2P1,
the m-k+1th transformation matrix, Pk, being used to introduce zeros into the kth row of A. Pk has the form
Pk= I 0 0 Tk ,
where
Tk=I-γkukukH, uk= ζk 0 zk cr ,
γk is a scalar for which Reγk=1.0, ζk is a real scalar and zk is an n-m element vector. γk, ζk and zk are chosen to annihilate the elements of the kth row of X and to make the diagonal elements of R real.
The scalar γk and the vector uk are returned in the kth element of the array THETA and in the kth row of A, such that θk, given by
θk=ζk,Imγk,
is in THETAk and the elements of zk are in Akm+1,,Akn. The elements of R are returned in the upper triangular part of A.
For further information on this factorization and its use see Section 6.5 of Golub and Van Loan (1996).

4  References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Wilkinson J H (1965) The Algebraic Eigenvalue Problem Oxford University Press, Oxford

5  Parameters

1:     M – INTEGERInput
On entry: m, the number of rows of the matrix A.
When M=0 then an immediate return is effected.
Constraint: M0.
2:     N – INTEGERInput
On entry: n, the number of columns of the matrix A.
Constraint: NM.
3:     A(LDA,*) – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array A must be at least max1,N.
On entry: the leading m by n upper trapezoidal part of the array A must contain the matrix to be factorized.
On exit: the m by m upper triangular part of A will contain the upper triangular matrix R, and the m by n-m upper trapezoidal part of A will contain details of the factorization as described in Section 3.
4:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which F01RGF is called.
Constraint: LDAmax1,M.
5:     THETA(M) – COMPLEX (KIND=nag_wp) arrayOutput
On exit: THETAk contains the scalar θk for the m-k+1th transformation. If Tk=I then THETAk=0.0; if
Tk= α 0 0 I ,  Reα<0.0
then THETAk=α, otherwise THETAk contains θk as described in Section 3 and Reθk is always in the range 1.0,2.0.
6:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=-1
On entry,M<0,
orN<M,
orLDA<M.

7  Accuracy

The computed factors R and P satisfy the relation
R 0 PH=A+E,
where
Ecε A,
ε is the machine precision (see X02AJF), c is a modest function of m and n, and . denotes the spectral (two) norm.

8  Further Comments

The approximate number of floating point operations is given by 8m2n-m.

9  Example

This example reduces the 3 by 4 matrix
2.4 0.8+0.8i -1.4+0.6i 3.0-1.0i 0.0 1.6i+0.0 0.8+0.3i 0.4+0.5i 0.0 0.0i+0.0 1.0i+0.0 2.0-1.0i
to upper triangular form.

9.1  Program Text

Program Text (f01rgfe.f90)

9.2  Program Data

Program Data (f01rgfe.d)

9.3  Program Results

Program Results (f01rgfe.r)


F01RGF (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012