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

NAG Library Routine Document

F01RKF

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

F01RKF returns the first  rows of the n by n unitary matrix PH, where P is given as the product of Householder transformation matrices.
This routine is intended for use following F01RJF.

2  Specification

SUBROUTINE F01RKF ( WHERET, M, N, NROWP, A, LDA, THETA, WORK, IFAIL)
INTEGER  M, N, NROWP, LDA, IFAIL
COMPLEX (KIND=nag_wp)  A(LDA,*), THETA(*), WORK(max(M-1,NROWP-M,1))
CHARACTER(1)  WHERET

3  Description

P is assumed to be given by
P = Pm P m-1 P1 ,
where
Pk=I-γkukukH, uk= wk ζk 0 zk
γk is a scalar for which Reγk=1.0, ζk is a real scalar, wk is a k-1 element vector and zk is an n-m element vector. wk must be supplied in the kth row of A in elements Ak1,,Akk-1. zk must be supplied in the kth row of A in elements Akm+1,,Akn and θk, given by
θk=ζk,Imγk,
must be supplied either in Akk or in THETAk, depending upon the parameter WHERET.

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:     WHERET – CHARACTER(1)Input
On entry: indicates where the elements of θ are to be found.
WHERET='I' (In A)
The elements of θ are in A.
WHERET='S' (Separate)
The elements of θ are separate from A, in THETA.
Constraint: WHERET='I' or 'S'.
2:     M – INTEGERInput
On entry: m, the number of rows of the matrix A.
Constraint: M0.
3:     N – INTEGERInput
On entry: n, the number of columns of the matrix A.
Constraint: NM.
4:     NROWP – INTEGERInput
On entry: , the required number of rows of P.
If NROWP=0, an immediate return is effected.
Constraint: 0NROWPN.
5:     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 m strictly lower triangular part of the array A, and the m by n-m rectangular part of A with top left-hand corner at element A1M+1 must contain details of the matrix P. In addition, if WHERET='I', the diagonal elements of A must contain the elements of θ.
On exit: the first NROWP rows of the array A are overwritten by the first NROWP rows of the n by n unitary matrix PH.
6:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which F01RKF is called.
Constraint: LDAmax1,M,NROWP.
7:     THETA(*) – COMPLEX (KIND=nag_wp) arrayInput
Note: the dimension of the array THETA must be at least max1,M if WHERET='S', and at least 1 otherwise.
On entry: if WHERET='S', the array THETA must contain the elements of θ. If THETAk=0.0, Pk is assumed to be I, if THETAk=α and Reα<0.0, Pk is assumed to be of the form
Pk= I 0 0 0 α 0 0 0 I ,
otherwise THETAk is assumed to contain θk given by
θk=ζk,Imγk.
If WHERET='I', the array THETA is not referenced.
8:     WORK(maxM-1,NROWP-M,1) – COMPLEX (KIND=nag_wp) arrayWorkspace
9:     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,WHERET'I' or 'S',
orM<0,
orN<M,
orNROWP<0 or NROWP>N,
orLDA<max1,M,NROWP.

7  Accuracy

The computed matrix P satisfies the relation
P=Q+E,
where Q is an exactly unitary matrix and
Ecε,
where ε the machine precision (see X02AJF), c is a modest function of n, and . denotes the spectral (two) norm. See also Section 7 in F01RJF.

8  Further Comments

The approximate number of floating point operations is given by
83n3n-m2-m-m-m, if ​m, and ​ 8323n-, if ​<m.

9  Example

This example obtains the 5 by 5 unitary matrix P following the RQ factorization of the 3 by 5 matrix A given by
A = -0.5i 0.4-0.3i 0.4i+0.0 0.3-0.4i 0.3i -0.5-1.5i 0.9-1.3i -0.4-0.4i 0.1-0.7i 0.3-0.3i -1.0-1.0i 0.2-1.4i 1.8i+0.0 0.0i+0.0 -2.4i .

9.1  Program Text

Program Text (f01rkfe.f90)

9.2  Program Data

Program Data (f01rkfe.d)

9.3  Program Results

Program Results (f01rkfe.r)


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

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