NAG Library Routine Document

f01qgf (real_trapez_rq)

1
Purpose

f01qgf reduces the m by n (mn) real upper trapezoidal matrix A to upper triangular form by means of orthogonal transformations.

2
Specification

Fortran Interface
Subroutine f01qgf ( m, n, a, lda, zeta, ifail)
Integer, Intent (In):: m, n, lda
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (Inout):: a(lda,*)
Real (Kind=nag_wp), Intent (Out):: zeta(m)
C Header Interface
#include <nagmk26.h>
void  f01qgf_ (const Integer *m, const Integer *n, double a[], const Integer *lda, double zeta[], Integer *ifail)

3
Description

The m by n (mn) real 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 PT,  
where P is an n by n orthogonal 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-ukukT, uk= ζk 0 zk ,  
ζk is a scalar and zk is an (n-m) element vector. ζk and zk are chosen to annihilate the elements of the kth row of X.
The vector uk is returned in the kth element of the array zeta and in the kth row of a, such that ζk is in zetak 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
Arguments

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:     alda* – Real (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 f01qgf is called.
Constraint: ldamax1,m.
5:     zetam – Real (Kind=nag_wp) arrayOutput
On exit: zetak contains the scalar ζk for the m-k+1th transformation. If Tk=I then zetak=0.0, otherwise zetak contains ζk as described in Section 3 and ζ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 argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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, lda=value and m=value.
Constraint: ldam.
On entry, m=value.
Constraint: m0.
On entry, n=value and m=value.
Constraint: nm.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The computed factors R and P satisfy the relation
R0PT=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
Parallelism and Performance

f01qgf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
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.

9
Further Comments

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

10
Example

This example reduces the 3 by 5 matrix
A= 2.4 0.8 -1.4 3.0 -0.8 0.0 1.6 0.8 0.4 -0.8 0.0 0.0 1.0 2.0 2.0  
to upper triangular form.

10.1
Program Text

Program Text (f01qgfe.f90)

10.2
Program Data

Program Data (f01qgfe.d)

10.3
Program Results

Program Results (f01qgfe.r)