LAPACK 3.3.0
|
00001 SUBROUTINE ZUNG2R( M, N, K, A, LDA, TAU, WORK, INFO ) 00002 * 00003 * -- LAPACK routine (version 3.2) -- 00004 * -- LAPACK is a software package provided by Univ. of Tennessee, -- 00005 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- 00006 * November 2006 00007 * 00008 * .. Scalar Arguments .. 00009 INTEGER INFO, K, LDA, M, N 00010 * .. 00011 * .. Array Arguments .. 00012 COMPLEX*16 A( LDA, * ), TAU( * ), WORK( * ) 00013 * .. 00014 * 00015 * Purpose 00016 * ======= 00017 * 00018 * ZUNG2R generates an m by n complex matrix Q with orthonormal columns, 00019 * which is defined as the first n columns of a product of k elementary 00020 * reflectors of order m 00021 * 00022 * Q = H(1) H(2) . . . H(k) 00023 * 00024 * as returned by ZGEQRF. 00025 * 00026 * Arguments 00027 * ========= 00028 * 00029 * M (input) INTEGER 00030 * The number of rows of the matrix Q. M >= 0. 00031 * 00032 * N (input) INTEGER 00033 * The number of columns of the matrix Q. M >= N >= 0. 00034 * 00035 * K (input) INTEGER 00036 * The number of elementary reflectors whose product defines the 00037 * matrix Q. N >= K >= 0. 00038 * 00039 * A (input/output) COMPLEX*16 array, dimension (LDA,N) 00040 * On entry, the i-th column must contain the vector which 00041 * defines the elementary reflector H(i), for i = 1,2,...,k, as 00042 * returned by ZGEQRF in the first k columns of its array 00043 * argument A. 00044 * On exit, the m by n matrix Q. 00045 * 00046 * LDA (input) INTEGER 00047 * The first dimension of the array A. LDA >= max(1,M). 00048 * 00049 * TAU (input) COMPLEX*16 array, dimension (K) 00050 * TAU(i) must contain the scalar factor of the elementary 00051 * reflector H(i), as returned by ZGEQRF. 00052 * 00053 * WORK (workspace) COMPLEX*16 array, dimension (N) 00054 * 00055 * INFO (output) INTEGER 00056 * = 0: successful exit 00057 * < 0: if INFO = -i, the i-th argument has an illegal value 00058 * 00059 * ===================================================================== 00060 * 00061 * .. Parameters .. 00062 COMPLEX*16 ONE, ZERO 00063 PARAMETER ( ONE = ( 1.0D+0, 0.0D+0 ), 00064 $ ZERO = ( 0.0D+0, 0.0D+0 ) ) 00065 * .. 00066 * .. Local Scalars .. 00067 INTEGER I, J, L 00068 * .. 00069 * .. External Subroutines .. 00070 EXTERNAL XERBLA, ZLARF, ZSCAL 00071 * .. 00072 * .. Intrinsic Functions .. 00073 INTRINSIC MAX 00074 * .. 00075 * .. Executable Statements .. 00076 * 00077 * Test the input arguments 00078 * 00079 INFO = 0 00080 IF( M.LT.0 ) THEN 00081 INFO = -1 00082 ELSE IF( N.LT.0 .OR. N.GT.M ) THEN 00083 INFO = -2 00084 ELSE IF( K.LT.0 .OR. K.GT.N ) THEN 00085 INFO = -3 00086 ELSE IF( LDA.LT.MAX( 1, M ) ) THEN 00087 INFO = -5 00088 END IF 00089 IF( INFO.NE.0 ) THEN 00090 CALL XERBLA( 'ZUNG2R', -INFO ) 00091 RETURN 00092 END IF 00093 * 00094 * Quick return if possible 00095 * 00096 IF( N.LE.0 ) 00097 $ RETURN 00098 * 00099 * Initialise columns k+1:n to columns of the unit matrix 00100 * 00101 DO 20 J = K + 1, N 00102 DO 10 L = 1, M 00103 A( L, J ) = ZERO 00104 10 CONTINUE 00105 A( J, J ) = ONE 00106 20 CONTINUE 00107 * 00108 DO 40 I = K, 1, -1 00109 * 00110 * Apply H(i) to A(i:m,i:n) from the left 00111 * 00112 IF( I.LT.N ) THEN 00113 A( I, I ) = ONE 00114 CALL ZLARF( 'Left', M-I+1, N-I, A( I, I ), 1, TAU( I ), 00115 $ A( I, I+1 ), LDA, WORK ) 00116 END IF 00117 IF( I.LT.M ) 00118 $ CALL ZSCAL( M-I, -TAU( I ), A( I+1, I ), 1 ) 00119 A( I, I ) = ONE - TAU( I ) 00120 * 00121 * Set A(1:i-1,i) to zero 00122 * 00123 DO 30 L = 1, I - 1 00124 A( L, I ) = ZERO 00125 30 CONTINUE 00126 40 CONTINUE 00127 RETURN 00128 * 00129 * End of ZUNG2R 00130 * 00131 END