cqlt01.c
Go to the documentation of this file.
00001 /* cqlt01.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 complex c_b1 = {-1e10f,-1e10f};
00027 static complex c_b12 = {0.f,0.f};
00028 static complex c_b19 = {-1.f,0.f};
00029 static complex c_b20 = {1.f,0.f};
00030 static real c_b28 = -1.f;
00031 static real c_b29 = 1.f;
00032 
00033 /* Subroutine */ int cqlt01_(integer *m, integer *n, complex *a, complex *af, 
00034         complex *q, complex *l, integer *lda, complex *tau, complex *work, 
00035         integer *lwork, real *rwork, real *result)
00036 {
00037     /* System generated locals */
00038     integer a_dim1, a_offset, af_dim1, af_offset, l_dim1, l_offset, q_dim1, 
00039             q_offset, i__1, i__2;
00040 
00041     /* Builtin functions */
00042     /* Subroutine */ int s_copy(char *, char *, ftnlen, ftnlen);
00043 
00044     /* Local variables */
00045     real eps;
00046     integer info;
00047     extern /* Subroutine */ int cgemm_(char *, char *, integer *, integer *, 
00048             integer *, complex *, complex *, integer *, complex *, integer *, 
00049             complex *, complex *, integer *), cherk_(char *, 
00050             char *, integer *, integer *, real *, complex *, integer *, real *
00051 , complex *, integer *);
00052     real resid, anorm;
00053     integer minmn;
00054     extern doublereal clange_(char *, integer *, integer *, complex *, 
00055             integer *, real *);
00056     extern /* Subroutine */ int cgeqlf_(integer *, integer *, complex *, 
00057             integer *, complex *, complex *, integer *, integer *);
00058     extern doublereal slamch_(char *);
00059     extern /* Subroutine */ int clacpy_(char *, integer *, integer *, complex 
00060             *, integer *, complex *, integer *), claset_(char *, 
00061             integer *, integer *, complex *, complex *, complex *, integer *);
00062     extern doublereal clansy_(char *, char *, integer *, complex *, integer *, 
00063              real *);
00064     extern /* Subroutine */ int cungql_(integer *, integer *, integer *, 
00065             complex *, integer *, complex *, complex *, integer *, integer *);
00066 
00067 
00068 /*  -- LAPACK test routine (version 3.1) -- */
00069 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00070 /*     November 2006 */
00071 
00072 /*     .. Scalar Arguments .. */
00073 /*     .. */
00074 /*     .. Array Arguments .. */
00075 /*     .. */
00076 
00077 /*  Purpose */
00078 /*  ======= */
00079 
00080 /*  CQLT01 tests CGEQLF, which computes the QL factorization of an m-by-n */
00081 /*  matrix A, and partially tests CUNGQL which forms the m-by-m */
00082 /*  orthogonal matrix Q. */
00083 
00084 /*  CQLT01 compares L with Q'*A, and checks that Q is orthogonal. */
00085 
00086 /*  Arguments */
00087 /*  ========= */
00088 
00089 /*  M       (input) INTEGER */
00090 /*          The number of rows of the matrix A.  M >= 0. */
00091 
00092 /*  N       (input) INTEGER */
00093 /*          The number of columns of the matrix A.  N >= 0. */
00094 
00095 /*  A       (input) COMPLEX array, dimension (LDA,N) */
00096 /*          The m-by-n matrix A. */
00097 
00098 /*  AF      (output) COMPLEX array, dimension (LDA,N) */
00099 /*          Details of the QL factorization of A, as returned by CGEQLF. */
00100 /*          See CGEQLF for further details. */
00101 
00102 /*  Q       (output) COMPLEX array, dimension (LDA,M) */
00103 /*          The m-by-m orthogonal matrix Q. */
00104 
00105 /*  L       (workspace) COMPLEX array, dimension (LDA,max(M,N)) */
00106 
00107 /*  LDA     (input) INTEGER */
00108 /*          The leading dimension of the arrays A, AF, Q and R. */
00109 /*          LDA >= max(M,N). */
00110 
00111 /*  TAU     (output) COMPLEX array, dimension (min(M,N)) */
00112 /*          The scalar factors of the elementary reflectors, as returned */
00113 /*          by CGEQLF. */
00114 
00115 /*  WORK    (workspace) COMPLEX array, dimension (LWORK) */
00116 
00117 /*  LWORK   (input) INTEGER */
00118 /*          The dimension of the array WORK. */
00119 
00120 /*  RWORK   (workspace) REAL array, dimension (M) */
00121 
00122 /*  RESULT  (output) REAL array, dimension (2) */
00123 /*          The test ratios: */
00124 /*          RESULT(1) = norm( L - Q'*A ) / ( M * norm(A) * EPS ) */
00125 /*          RESULT(2) = norm( I - Q'*Q ) / ( M * EPS ) */
00126 
00127 /*  ===================================================================== */
00128 
00129 /*     .. Parameters .. */
00130 /*     .. */
00131 /*     .. Local Scalars .. */
00132 /*     .. */
00133 /*     .. External Functions .. */
00134 /*     .. */
00135 /*     .. External Subroutines .. */
00136 /*     .. */
00137 /*     .. Intrinsic Functions .. */
00138 /*     .. */
00139 /*     .. Scalars in Common .. */
00140 /*     .. */
00141 /*     .. Common blocks .. */
00142 /*     .. */
00143 /*     .. Executable Statements .. */
00144 
00145     /* Parameter adjustments */
00146     l_dim1 = *lda;
00147     l_offset = 1 + l_dim1;
00148     l -= l_offset;
00149     q_dim1 = *lda;
00150     q_offset = 1 + q_dim1;
00151     q -= q_offset;
00152     af_dim1 = *lda;
00153     af_offset = 1 + af_dim1;
00154     af -= af_offset;
00155     a_dim1 = *lda;
00156     a_offset = 1 + a_dim1;
00157     a -= a_offset;
00158     --tau;
00159     --work;
00160     --rwork;
00161     --result;
00162 
00163     /* Function Body */
00164     minmn = min(*m,*n);
00165     eps = slamch_("Epsilon");
00166 
00167 /*     Copy the matrix A to the array AF. */
00168 
00169     clacpy_("Full", m, n, &a[a_offset], lda, &af[af_offset], lda);
00170 
00171 /*     Factorize the matrix A in the array AF. */
00172 
00173     s_copy(srnamc_1.srnamt, "CGEQLF", (ftnlen)32, (ftnlen)6);
00174     cgeqlf_(m, n, &af[af_offset], lda, &tau[1], &work[1], lwork, &info);
00175 
00176 /*     Copy details of Q */
00177 
00178     claset_("Full", m, m, &c_b1, &c_b1, &q[q_offset], lda);
00179     if (*m >= *n) {
00180         if (*n < *m && *n > 0) {
00181             i__1 = *m - *n;
00182             clacpy_("Full", &i__1, n, &af[af_offset], lda, &q[(*m - *n + 1) * 
00183                     q_dim1 + 1], lda);
00184         }
00185         if (*n > 1) {
00186             i__1 = *n - 1;
00187             i__2 = *n - 1;
00188             clacpy_("Upper", &i__1, &i__2, &af[*m - *n + 1 + (af_dim1 << 1)], 
00189                     lda, &q[*m - *n + 1 + (*m - *n + 2) * q_dim1], lda);
00190         }
00191     } else {
00192         if (*m > 1) {
00193             i__1 = *m - 1;
00194             i__2 = *m - 1;
00195             clacpy_("Upper", &i__1, &i__2, &af[(*n - *m + 2) * af_dim1 + 1], 
00196                     lda, &q[(q_dim1 << 1) + 1], lda);
00197         }
00198     }
00199 
00200 /*     Generate the m-by-m matrix Q */
00201 
00202     s_copy(srnamc_1.srnamt, "CUNGQL", (ftnlen)32, (ftnlen)6);
00203     cungql_(m, m, &minmn, &q[q_offset], lda, &tau[1], &work[1], lwork, &info);
00204 
00205 /*     Copy L */
00206 
00207     claset_("Full", m, n, &c_b12, &c_b12, &l[l_offset], lda);
00208     if (*m >= *n) {
00209         if (*n > 0) {
00210             clacpy_("Lower", n, n, &af[*m - *n + 1 + af_dim1], lda, &l[*m - *
00211                     n + 1 + l_dim1], lda);
00212         }
00213     } else {
00214         if (*n > *m && *m > 0) {
00215             i__1 = *n - *m;
00216             clacpy_("Full", m, &i__1, &af[af_offset], lda, &l[l_offset], lda);
00217         }
00218         if (*m > 0) {
00219             clacpy_("Lower", m, m, &af[(*n - *m + 1) * af_dim1 + 1], lda, &l[(
00220                     *n - *m + 1) * l_dim1 + 1], lda);
00221         }
00222     }
00223 
00224 /*     Compute L - Q'*A */
00225 
00226     cgemm_("Conjugate transpose", "No transpose", m, n, m, &c_b19, &q[
00227             q_offset], lda, &a[a_offset], lda, &c_b20, &l[l_offset], lda);
00228 
00229 /*     Compute norm( L - Q'*A ) / ( M * norm(A) * EPS ) . */
00230 
00231     anorm = clange_("1", m, n, &a[a_offset], lda, &rwork[1]);
00232     resid = clange_("1", m, n, &l[l_offset], lda, &rwork[1]);
00233     if (anorm > 0.f) {
00234         result[1] = resid / (real) max(1,*m) / anorm / eps;
00235     } else {
00236         result[1] = 0.f;
00237     }
00238 
00239 /*     Compute I - Q'*Q */
00240 
00241     claset_("Full", m, m, &c_b12, &c_b20, &l[l_offset], lda);
00242     cherk_("Upper", "Conjugate transpose", m, m, &c_b28, &q[q_offset], lda, &
00243             c_b29, &l[l_offset], lda);
00244 
00245 /*     Compute norm( I - Q'*Q ) / ( M * EPS ) . */
00246 
00247     resid = clansy_("1", "Upper", m, &l[l_offset], lda, &rwork[1]);
00248 
00249     result[2] = resid / (real) max(1,*m) / eps;
00250 
00251     return 0;
00252 
00253 /*     End of CQLT01 */
00254 
00255 } /* cqlt01_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:55:33