00001 /* sgeqls.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 /* Table of constant values */ 00017 00018 static real c_b9 = 1.f; 00019 00020 /* Subroutine */ int sgeqls_(integer *m, integer *n, integer *nrhs, real *a, 00021 integer *lda, real *tau, real *b, integer *ldb, real *work, integer * 00022 lwork, integer *info) 00023 { 00024 /* System generated locals */ 00025 integer a_dim1, a_offset, b_dim1, b_offset, i__1; 00026 00027 /* Local variables */ 00028 extern /* Subroutine */ int strsm_(char *, char *, char *, char *, 00029 integer *, integer *, real *, real *, integer *, real *, integer * 00030 ), xerbla_(char *, integer *), sormql_(char *, char *, integer *, integer *, integer *, 00031 real *, integer *, real *, real *, integer *, real *, integer *, 00032 integer *); 00033 00034 00035 /* -- LAPACK routine (version 3.1) -- */ 00036 /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ 00037 /* November 2006 */ 00038 00039 /* .. Scalar Arguments .. */ 00040 /* .. */ 00041 /* .. Array Arguments .. */ 00042 /* .. */ 00043 00044 /* Purpose */ 00045 /* ======= */ 00046 00047 /* Solve the least squares problem */ 00048 /* min || A*X - B || */ 00049 /* using the QL factorization */ 00050 /* A = Q*L */ 00051 /* computed by SGEQLF. */ 00052 00053 /* Arguments */ 00054 /* ========= */ 00055 00056 /* M (input) INTEGER */ 00057 /* The number of rows of the matrix A. M >= 0. */ 00058 00059 /* N (input) INTEGER */ 00060 /* The number of columns of the matrix A. M >= N >= 0. */ 00061 00062 /* NRHS (input) INTEGER */ 00063 /* The number of columns of B. NRHS >= 0. */ 00064 00065 /* A (input) REAL array, dimension (LDA,N) */ 00066 /* Details of the QL factorization of the original matrix A as */ 00067 /* returned by SGEQLF. */ 00068 00069 /* LDA (input) INTEGER */ 00070 /* The leading dimension of the array A. LDA >= M. */ 00071 00072 /* TAU (input) REAL array, dimension (N) */ 00073 /* Details of the orthogonal matrix Q. */ 00074 00075 /* B (input/output) REAL array, dimension (LDB,NRHS) */ 00076 /* On entry, the m-by-nrhs right hand side matrix B. */ 00077 /* On exit, the n-by-nrhs solution matrix X, stored in rows */ 00078 /* m-n+1:m. */ 00079 00080 /* LDB (input) INTEGER */ 00081 /* The leading dimension of the array B. LDB >= M. */ 00082 00083 /* WORK (workspace) REAL array, dimension (LWORK) */ 00084 00085 /* LWORK (input) INTEGER */ 00086 /* The length of the array WORK. LWORK must be at least NRHS, */ 00087 /* and should be at least NRHS*NB, where NB is the block size */ 00088 /* for this environment. */ 00089 00090 /* INFO (output) INTEGER */ 00091 /* = 0: successful exit */ 00092 /* < 0: if INFO = -i, the i-th argument had an illegal value */ 00093 00094 /* ===================================================================== */ 00095 00096 /* .. Parameters .. */ 00097 /* .. */ 00098 /* .. External Subroutines .. */ 00099 /* .. */ 00100 /* .. Intrinsic Functions .. */ 00101 /* .. */ 00102 /* .. Executable Statements .. */ 00103 00104 /* Test the input arguments. */ 00105 00106 /* Parameter adjustments */ 00107 a_dim1 = *lda; 00108 a_offset = 1 + a_dim1; 00109 a -= a_offset; 00110 --tau; 00111 b_dim1 = *ldb; 00112 b_offset = 1 + b_dim1; 00113 b -= b_offset; 00114 --work; 00115 00116 /* Function Body */ 00117 *info = 0; 00118 if (*m < 0) { 00119 *info = -1; 00120 } else if (*n < 0 || *n > *m) { 00121 *info = -2; 00122 } else if (*nrhs < 0) { 00123 *info = -3; 00124 } else if (*lda < max(1,*m)) { 00125 *info = -5; 00126 } else if (*ldb < max(1,*m)) { 00127 *info = -8; 00128 } else if (*lwork < 1 || *lwork < *nrhs && *m > 0 && *n > 0) { 00129 *info = -10; 00130 } 00131 if (*info != 0) { 00132 i__1 = -(*info); 00133 xerbla_("SGEQLS", &i__1); 00134 return 0; 00135 } 00136 00137 /* Quick return if possible */ 00138 00139 if (*n == 0 || *nrhs == 0 || *m == 0) { 00140 return 0; 00141 } 00142 00143 /* B := Q' * B */ 00144 00145 sormql_("Left", "Transpose", m, nrhs, n, &a[a_offset], lda, &tau[1], &b[ 00146 b_offset], ldb, &work[1], lwork, info); 00147 00148 /* Solve L*X = B(m-n+1:m,:) */ 00149 00150 strsm_("Left", "Lower", "No transpose", "Non-unit", n, nrhs, &c_b9, &a[*m 00151 - *n + 1 + a_dim1], lda, &b[*m - *n + 1 + b_dim1], ldb); 00152 00153 return 0; 00154 00155 /* End of SGEQLS */ 00156 00157 } /* sgeqls_ */