zqlt01.c
Go to the documentation of this file.
00001 /* zqlt01.f -- translated by f2c (version 20061008).
00002    You must link the resulting object file with libf2c:
00003         on Microsoft Windows system, link with libf2c.lib;
00004         on Linux or Unix systems, link with .../path/to/libf2c.a -lm
00005         or, if you install libf2c.a in a standard place, with -lf2c -lm
00006         -- in that order, at the end of the command line, as in
00007                 cc *.o -lf2c -lm
00008         Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
00009 
00010                 http://www.netlib.org/f2c/libf2c.zip
00011 */
00012 
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015 
00016 /* Common Block Declarations */
00017 
00018 struct {
00019     char srnamt[32];
00020 } srnamc_;
00021 
00022 #define srnamc_1 srnamc_
00023 
00024 /* Table of constant values */
00025 
00026 static doublecomplex c_b1 = {-1e10,-1e10};
00027 static doublecomplex c_b12 = {0.,0.};
00028 static doublecomplex c_b19 = {-1.,0.};
00029 static doublecomplex c_b20 = {1.,0.};
00030 static doublereal c_b28 = -1.;
00031 static doublereal c_b29 = 1.;
00032 
00033 /* Subroutine */ int zqlt01_(integer *m, integer *n, doublecomplex *a, 
00034         doublecomplex *af, doublecomplex *q, doublecomplex *l, integer *lda, 
00035         doublecomplex *tau, doublecomplex *work, integer *lwork, doublereal *
00036         rwork, doublereal *result)
00037 {
00038     /* System generated locals */
00039     integer a_dim1, a_offset, af_dim1, af_offset, l_dim1, l_offset, q_dim1, 
00040             q_offset, i__1, i__2;
00041 
00042     /* Builtin functions */
00043     /* Subroutine */ int s_copy(char *, char *, ftnlen, ftnlen);
00044 
00045     /* Local variables */
00046     doublereal eps;
00047     integer info;
00048     doublereal resid, anorm;
00049     integer minmn;
00050     extern /* Subroutine */ int zgemm_(char *, char *, integer *, integer *, 
00051             integer *, doublecomplex *, doublecomplex *, integer *, 
00052             doublecomplex *, integer *, doublecomplex *, doublecomplex *, 
00053             integer *), zherk_(char *, char *, integer *, 
00054             integer *, doublereal *, doublecomplex *, integer *, doublereal *, 
00055              doublecomplex *, integer *);
00056     extern doublereal dlamch_(char *), zlange_(char *, integer *, 
00057             integer *, doublecomplex *, integer *, doublereal *);
00058     extern /* Subroutine */ int zgeqlf_(integer *, integer *, doublecomplex *, 
00059              integer *, doublecomplex *, doublecomplex *, integer *, integer *
00060 ), zlacpy_(char *, integer *, integer *, doublecomplex *, integer 
00061             *, doublecomplex *, integer *), zlaset_(char *, integer *, 
00062              integer *, doublecomplex *, doublecomplex *, doublecomplex *, 
00063             integer *);
00064     extern doublereal zlansy_(char *, char *, integer *, doublecomplex *, 
00065             integer *, doublereal *);
00066     extern /* Subroutine */ int zungql_(integer *, integer *, integer *, 
00067             doublecomplex *, integer *, doublecomplex *, doublecomplex *, 
00068             integer *, integer *);
00069 
00070 
00071 /*  -- LAPACK test routine (version 3.1) -- */
00072 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00073 /*     November 2006 */
00074 
00075 /*     .. Scalar Arguments .. */
00076 /*     .. */
00077 /*     .. Array Arguments .. */
00078 /*     .. */
00079 
00080 /*  Purpose */
00081 /*  ======= */
00082 
00083 /*  ZQLT01 tests ZGEQLF, which computes the QL factorization of an m-by-n */
00084 /*  matrix A, and partially tests ZUNGQL which forms the m-by-m */
00085 /*  orthogonal matrix Q. */
00086 
00087 /*  ZQLT01 compares L with Q'*A, and checks that Q is orthogonal. */
00088 
00089 /*  Arguments */
00090 /*  ========= */
00091 
00092 /*  M       (input) INTEGER */
00093 /*          The number of rows of the matrix A.  M >= 0. */
00094 
00095 /*  N       (input) INTEGER */
00096 /*          The number of columns of the matrix A.  N >= 0. */
00097 
00098 /*  A       (input) COMPLEX*16 array, dimension (LDA,N) */
00099 /*          The m-by-n matrix A. */
00100 
00101 /*  AF      (output) COMPLEX*16 array, dimension (LDA,N) */
00102 /*          Details of the QL factorization of A, as returned by ZGEQLF. */
00103 /*          See ZGEQLF for further details. */
00104 
00105 /*  Q       (output) COMPLEX*16 array, dimension (LDA,M) */
00106 /*          The m-by-m orthogonal matrix Q. */
00107 
00108 /*  L       (workspace) COMPLEX*16 array, dimension (LDA,max(M,N)) */
00109 
00110 /*  LDA     (input) INTEGER */
00111 /*          The leading dimension of the arrays A, AF, Q and R. */
00112 /*          LDA >= max(M,N). */
00113 
00114 /*  TAU     (output) COMPLEX*16 array, dimension (min(M,N)) */
00115 /*          The scalar factors of the elementary reflectors, as returned */
00116 /*          by ZGEQLF. */
00117 
00118 /*  WORK    (workspace) COMPLEX*16 array, dimension (LWORK) */
00119 
00120 /*  LWORK   (input) INTEGER */
00121 /*          The dimension of the array WORK. */
00122 
00123 /*  RWORK   (workspace) DOUBLE PRECISION array, dimension (M) */
00124 
00125 /*  RESULT  (output) DOUBLE PRECISION array, dimension (2) */
00126 /*          The test ratios: */
00127 /*          RESULT(1) = norm( L - Q'*A ) / ( M * norm(A) * EPS ) */
00128 /*          RESULT(2) = norm( I - Q'*Q ) / ( M * EPS ) */
00129 
00130 /*  ===================================================================== */
00131 
00132 /*     .. Parameters .. */
00133 /*     .. */
00134 /*     .. Local Scalars .. */
00135 /*     .. */
00136 /*     .. External Functions .. */
00137 /*     .. */
00138 /*     .. External Subroutines .. */
00139 /*     .. */
00140 /*     .. Intrinsic Functions .. */
00141 /*     .. */
00142 /*     .. Scalars in Common .. */
00143 /*     .. */
00144 /*     .. Common blocks .. */
00145 /*     .. */
00146 /*     .. Executable Statements .. */
00147 
00148     /* Parameter adjustments */
00149     l_dim1 = *lda;
00150     l_offset = 1 + l_dim1;
00151     l -= l_offset;
00152     q_dim1 = *lda;
00153     q_offset = 1 + q_dim1;
00154     q -= q_offset;
00155     af_dim1 = *lda;
00156     af_offset = 1 + af_dim1;
00157     af -= af_offset;
00158     a_dim1 = *lda;
00159     a_offset = 1 + a_dim1;
00160     a -= a_offset;
00161     --tau;
00162     --work;
00163     --rwork;
00164     --result;
00165 
00166     /* Function Body */
00167     minmn = min(*m,*n);
00168     eps = dlamch_("Epsilon");
00169 
00170 /*     Copy the matrix A to the array AF. */
00171 
00172     zlacpy_("Full", m, n, &a[a_offset], lda, &af[af_offset], lda);
00173 
00174 /*     Factorize the matrix A in the array AF. */
00175 
00176     s_copy(srnamc_1.srnamt, "ZGEQLF", (ftnlen)32, (ftnlen)6);
00177     zgeqlf_(m, n, &af[af_offset], lda, &tau[1], &work[1], lwork, &info);
00178 
00179 /*     Copy details of Q */
00180 
00181     zlaset_("Full", m, m, &c_b1, &c_b1, &q[q_offset], lda);
00182     if (*m >= *n) {
00183         if (*n < *m && *n > 0) {
00184             i__1 = *m - *n;
00185             zlacpy_("Full", &i__1, n, &af[af_offset], lda, &q[(*m - *n + 1) * 
00186                     q_dim1 + 1], lda);
00187         }
00188         if (*n > 1) {
00189             i__1 = *n - 1;
00190             i__2 = *n - 1;
00191             zlacpy_("Upper", &i__1, &i__2, &af[*m - *n + 1 + (af_dim1 << 1)], 
00192                     lda, &q[*m - *n + 1 + (*m - *n + 2) * q_dim1], lda);
00193         }
00194     } else {
00195         if (*m > 1) {
00196             i__1 = *m - 1;
00197             i__2 = *m - 1;
00198             zlacpy_("Upper", &i__1, &i__2, &af[(*n - *m + 2) * af_dim1 + 1], 
00199                     lda, &q[(q_dim1 << 1) + 1], lda);
00200         }
00201     }
00202 
00203 /*     Generate the m-by-m matrix Q */
00204 
00205     s_copy(srnamc_1.srnamt, "ZUNGQL", (ftnlen)32, (ftnlen)6);
00206     zungql_(m, m, &minmn, &q[q_offset], lda, &tau[1], &work[1], lwork, &info);
00207 
00208 /*     Copy L */
00209 
00210     zlaset_("Full", m, n, &c_b12, &c_b12, &l[l_offset], lda);
00211     if (*m >= *n) {
00212         if (*n > 0) {
00213             zlacpy_("Lower", n, n, &af[*m - *n + 1 + af_dim1], lda, &l[*m - *
00214                     n + 1 + l_dim1], lda);
00215         }
00216     } else {
00217         if (*n > *m && *m > 0) {
00218             i__1 = *n - *m;
00219             zlacpy_("Full", m, &i__1, &af[af_offset], lda, &l[l_offset], lda);
00220         }
00221         if (*m > 0) {
00222             zlacpy_("Lower", m, m, &af[(*n - *m + 1) * af_dim1 + 1], lda, &l[(
00223                     *n - *m + 1) * l_dim1 + 1], lda);
00224         }
00225     }
00226 
00227 /*     Compute L - Q'*A */
00228 
00229     zgemm_("Conjugate transpose", "No transpose", m, n, m, &c_b19, &q[
00230             q_offset], lda, &a[a_offset], lda, &c_b20, &l[l_offset], lda);
00231 
00232 /*     Compute norm( L - Q'*A ) / ( M * norm(A) * EPS ) . */
00233 
00234     anorm = zlange_("1", m, n, &a[a_offset], lda, &rwork[1]);
00235     resid = zlange_("1", m, n, &l[l_offset], lda, &rwork[1]);
00236     if (anorm > 0.) {
00237         result[1] = resid / (doublereal) max(1,*m) / anorm / eps;
00238     } else {
00239         result[1] = 0.;
00240     }
00241 
00242 /*     Compute I - Q'*Q */
00243 
00244     zlaset_("Full", m, m, &c_b12, &c_b20, &l[l_offset], lda);
00245     zherk_("Upper", "Conjugate transpose", m, m, &c_b28, &q[q_offset], lda, &
00246             c_b29, &l[l_offset], lda);
00247 
00248 /*     Compute norm( I - Q'*Q ) / ( M * EPS ) . */
00249 
00250     resid = zlansy_("1", "Upper", m, &l[l_offset], lda, &rwork[1]);
00251 
00252     result[2] = resid / (doublereal) max(1,*m) / eps;
00253 
00254     return 0;
00255 
00256 /*     End of ZQLT01 */
00257 
00258 } /* zqlt01_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:56:43