LAPACK  3.10.1
LAPACK: Linear Algebra PACKage
sgetsls.f
Go to the documentation of this file.
1 *> \brief \b SGETSLS
2 *
3 * Definition:
4 * ===========
5 *
6 * SUBROUTINE SGETSLS( TRANS, M, N, NRHS, A, LDA, B, LDB,
7 * $ WORK, LWORK, INFO )
8 *
9 * .. Scalar Arguments ..
10 * CHARACTER TRANS
11 * INTEGER INFO, LDA, LDB, LWORK, M, N, NRHS
12 * ..
13 * .. Array Arguments ..
14 * REAL A( LDA, * ), B( LDB, * ), WORK( * )
15 * ..
16 *
17 *
18 *> \par Purpose:
19 * =============
20 *>
21 *> \verbatim
22 *>
23 *> SGETSLS solves overdetermined or underdetermined real linear systems
24 *> involving an M-by-N matrix A, using a tall skinny QR or short wide LQ
25 *> factorization of A. It is assumed that A has full rank.
26 *>
27 *>
28 *>
29 *> The following options are provided:
30 *>
31 *> 1. If TRANS = 'N' and m >= n: find the least squares solution of
32 *> an overdetermined system, i.e., solve the least squares problem
33 *> minimize || B - A*X ||.
34 *>
35 *> 2. If TRANS = 'N' and m < n: find the minimum norm solution of
36 *> an underdetermined system A * X = B.
37 *>
38 *> 3. If TRANS = 'T' and m >= n: find the minimum norm solution of
39 *> an undetermined system A**T * X = B.
40 *>
41 *> 4. If TRANS = 'T' and m < n: find the least squares solution of
42 *> an overdetermined system, i.e., solve the least squares problem
43 *> minimize || B - A**T * X ||.
44 *>
45 *> Several right hand side vectors b and solution vectors x can be
46 *> handled in a single call; they are stored as the columns of the
47 *> M-by-NRHS right hand side matrix B and the N-by-NRHS solution
48 *> matrix X.
49 *> \endverbatim
50 *
51 * Arguments:
52 * ==========
53 *
54 *> \param[in] TRANS
55 *> \verbatim
56 *> TRANS is CHARACTER*1
57 *> = 'N': the linear system involves A;
58 *> = 'T': the linear system involves A**T.
59 *> \endverbatim
60 *>
61 *> \param[in] M
62 *> \verbatim
63 *> M is INTEGER
64 *> The number of rows of the matrix A. M >= 0.
65 *> \endverbatim
66 *>
67 *> \param[in] N
68 *> \verbatim
69 *> N is INTEGER
70 *> The number of columns of the matrix A. N >= 0.
71 *> \endverbatim
72 *>
73 *> \param[in] NRHS
74 *> \verbatim
75 *> NRHS is INTEGER
76 *> The number of right hand sides, i.e., the number of
77 *> columns of the matrices B and X. NRHS >=0.
78 *> \endverbatim
79 *>
80 *> \param[in,out] A
81 *> \verbatim
82 *> A is REAL array, dimension (LDA,N)
83 *> On entry, the M-by-N matrix A.
84 *> On exit,
85 *> A is overwritten by details of its QR or LQ
86 *> factorization as returned by SGEQR or SGELQ.
87 *> \endverbatim
88 *>
89 *> \param[in] LDA
90 *> \verbatim
91 *> LDA is INTEGER
92 *> The leading dimension of the array A. LDA >= max(1,M).
93 *> \endverbatim
94 *>
95 *> \param[in,out] B
96 *> \verbatim
97 *> B is REAL array, dimension (LDB,NRHS)
98 *> On entry, the matrix B of right hand side vectors, stored
99 *> columnwise; B is M-by-NRHS if TRANS = 'N', or N-by-NRHS
100 *> if TRANS = 'T'.
101 *> On exit, if INFO = 0, B is overwritten by the solution
102 *> vectors, stored columnwise:
103 *> if TRANS = 'N' and m >= n, rows 1 to n of B contain the least
104 *> squares solution vectors.
105 *> if TRANS = 'N' and m < n, rows 1 to N of B contain the
106 *> minimum norm solution vectors;
107 *> if TRANS = 'T' and m >= n, rows 1 to M of B contain the
108 *> minimum norm solution vectors;
109 *> if TRANS = 'T' and m < n, rows 1 to M of B contain the
110 *> least squares solution vectors.
111 *> \endverbatim
112 *>
113 *> \param[in] LDB
114 *> \verbatim
115 *> LDB is INTEGER
116 *> The leading dimension of the array B. LDB >= MAX(1,M,N).
117 *> \endverbatim
118 *>
119 *> \param[out] WORK
120 *> \verbatim
121 *> (workspace) REAL array, dimension (MAX(1,LWORK))
122 *> On exit, if INFO = 0, WORK(1) contains optimal (or either minimal
123 *> or optimal, if query was assumed) LWORK.
124 *> See LWORK for details.
125 *> \endverbatim
126 *>
127 *> \param[in] LWORK
128 *> \verbatim
129 *> LWORK is INTEGER
130 *> The dimension of the array WORK.
131 *> If LWORK = -1 or -2, then a workspace query is assumed.
132 *> If LWORK = -1, the routine calculates optimal size of WORK for the
133 *> optimal performance and returns this value in WORK(1).
134 *> If LWORK = -2, the routine calculates minimal size of WORK and
135 *> returns this value in WORK(1).
136 *> \endverbatim
137 *>
138 *> \param[out] INFO
139 *> \verbatim
140 *> INFO is INTEGER
141 *> = 0: successful exit
142 *> < 0: if INFO = -i, the i-th argument had an illegal value
143 *> > 0: if INFO = i, the i-th diagonal element of the
144 *> triangular factor of A is zero, so that A does not have
145 *> full rank; the least squares solution could not be
146 *> computed.
147 *> \endverbatim
148 *
149 * Authors:
150 * ========
151 *
152 *> \author Univ. of Tennessee
153 *> \author Univ. of California Berkeley
154 *> \author Univ. of Colorado Denver
155 *> \author NAG Ltd.
156 *
157 *> \ingroup realGEsolve
158 *
159 * =====================================================================
160  SUBROUTINE sgetsls( TRANS, M, N, NRHS, A, LDA, B, LDB,
161  $ WORK, LWORK, INFO )
162 *
163 * -- LAPACK driver routine --
164 * -- LAPACK is a software package provided by Univ. of Tennessee, --
165 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
166 *
167 * .. Scalar Arguments ..
168  CHARACTER TRANS
169  INTEGER INFO, LDA, LDB, LWORK, M, N, NRHS
170 * ..
171 * .. Array Arguments ..
172  REAL A( LDA, * ), B( LDB, * ), WORK( * )
173 *
174 * ..
175 *
176 * =====================================================================
177 *
178 * .. Parameters ..
179  REAL ZERO, ONE
180  parameter( zero = 0.0e0, one = 1.0e0 )
181 * ..
182 * .. Local Scalars ..
183  LOGICAL LQUERY, TRAN
184  INTEGER I, IASCL, IBSCL, J, MAXMN, BROW,
185  $ scllen, tszo, tszm, lwo, lwm, lw1, lw2,
186  $ wsizeo, wsizem, info2
187  REAL ANRM, BIGNUM, BNRM, SMLNUM, TQ( 5 ), WORKQ( 1 )
188 * ..
189 * .. External Functions ..
190  LOGICAL LSAME
191  REAL SLAMCH, SLANGE
192  EXTERNAL lsame, slabad, slamch, slange
193 * ..
194 * .. External Subroutines ..
195  EXTERNAL sgeqr, sgemqr, slascl, slaset,
197 * ..
198 * .. Intrinsic Functions ..
199  INTRINSIC real, max, min, int
200 * ..
201 * .. Executable Statements ..
202 *
203 * Test the input arguments.
204 *
205  info = 0
206  maxmn = max( m, n )
207  tran = lsame( trans, 'T' )
208 *
209  lquery = ( lwork.EQ.-1 .OR. lwork.EQ.-2 )
210  IF( .NOT.( lsame( trans, 'N' ) .OR.
211  $ lsame( trans, 'T' ) ) ) THEN
212  info = -1
213  ELSE IF( m.LT.0 ) THEN
214  info = -2
215  ELSE IF( n.LT.0 ) THEN
216  info = -3
217  ELSE IF( nrhs.LT.0 ) THEN
218  info = -4
219  ELSE IF( lda.LT.max( 1, m ) ) THEN
220  info = -6
221  ELSE IF( ldb.LT.max( 1, m, n ) ) THEN
222  info = -8
223  END IF
224 *
225  IF( info.EQ.0 ) THEN
226 *
227 * Determine the optimum and minimum LWORK
228 *
229  IF( m.GE.n ) THEN
230  CALL sgeqr( m, n, a, lda, tq, -1, workq, -1, info2 )
231  tszo = int( tq( 1 ) )
232  lwo = int( workq( 1 ) )
233  CALL sgemqr( 'L', trans, m, nrhs, n, a, lda, tq,
234  $ tszo, b, ldb, workq, -1, info2 )
235  lwo = max( lwo, int( workq( 1 ) ) )
236  CALL sgeqr( m, n, a, lda, tq, -2, workq, -2, info2 )
237  tszm = int( tq( 1 ) )
238  lwm = int( workq( 1 ) )
239  CALL sgemqr( 'L', trans, m, nrhs, n, a, lda, tq,
240  $ tszm, b, ldb, workq, -1, info2 )
241  lwm = max( lwm, int( workq( 1 ) ) )
242  wsizeo = tszo + lwo
243  wsizem = tszm + lwm
244  ELSE
245  CALL sgelq( m, n, a, lda, tq, -1, workq, -1, info2 )
246  tszo = int( tq( 1 ) )
247  lwo = int( workq( 1 ) )
248  CALL sgemlq( 'L', trans, n, nrhs, m, a, lda, tq,
249  $ tszo, b, ldb, workq, -1, info2 )
250  lwo = max( lwo, int( workq( 1 ) ) )
251  CALL sgelq( m, n, a, lda, tq, -2, workq, -2, info2 )
252  tszm = int( tq( 1 ) )
253  lwm = int( workq( 1 ) )
254  CALL sgemlq( 'L', trans, n, nrhs, m, a, lda, tq,
255  $ tszm, b, ldb, workq, -1, info2 )
256  lwm = max( lwm, int( workq( 1 ) ) )
257  wsizeo = tszo + lwo
258  wsizem = tszm + lwm
259  END IF
260 *
261  IF( ( lwork.LT.wsizem ).AND.( .NOT.lquery ) ) THEN
262  info = -10
263  END IF
264 *
265  work( 1 ) = real( wsizeo )
266 *
267  END IF
268 *
269  IF( info.NE.0 ) THEN
270  CALL xerbla( 'SGETSLS', -info )
271  RETURN
272  END IF
273  IF( lquery ) THEN
274  IF( lwork.EQ.-2 ) work( 1 ) = real( wsizem )
275  RETURN
276  END IF
277  IF( lwork.LT.wsizeo ) THEN
278  lw1 = tszm
279  lw2 = lwm
280  ELSE
281  lw1 = tszo
282  lw2 = lwo
283  END IF
284 *
285 * Quick return if possible
286 *
287  IF( min( m, n, nrhs ).EQ.0 ) THEN
288  CALL slaset( 'FULL', max( m, n ), nrhs, zero, zero,
289  $ b, ldb )
290  RETURN
291  END IF
292 *
293 * Get machine parameters
294 *
295  smlnum = slamch( 'S' ) / slamch( 'P' )
296  bignum = one / smlnum
297  CALL slabad( smlnum, bignum )
298 *
299 * Scale A, B if max element outside range [SMLNUM,BIGNUM]
300 *
301  anrm = slange( 'M', m, n, a, lda, work )
302  iascl = 0
303  IF( anrm.GT.zero .AND. anrm.LT.smlnum ) THEN
304 *
305 * Scale matrix norm up to SMLNUM
306 *
307  CALL slascl( 'G', 0, 0, anrm, smlnum, m, n, a, lda, info )
308  iascl = 1
309  ELSE IF( anrm.GT.bignum ) THEN
310 *
311 * Scale matrix norm down to BIGNUM
312 *
313  CALL slascl( 'G', 0, 0, anrm, bignum, m, n, a, lda, info )
314  iascl = 2
315  ELSE IF( anrm.EQ.zero ) THEN
316 *
317 * Matrix all zero. Return zero solution.
318 *
319  CALL slaset( 'F', maxmn, nrhs, zero, zero, b, ldb )
320  GO TO 50
321  END IF
322 *
323  brow = m
324  IF ( tran ) THEN
325  brow = n
326  END IF
327  bnrm = slange( 'M', brow, nrhs, b, ldb, work )
328  ibscl = 0
329  IF( bnrm.GT.zero .AND. bnrm.LT.smlnum ) THEN
330 *
331 * Scale matrix norm up to SMLNUM
332 *
333  CALL slascl( 'G', 0, 0, bnrm, smlnum, brow, nrhs, b, ldb,
334  $ info )
335  ibscl = 1
336  ELSE IF( bnrm.GT.bignum ) THEN
337 *
338 * Scale matrix norm down to BIGNUM
339 *
340  CALL slascl( 'G', 0, 0, bnrm, bignum, brow, nrhs, b, ldb,
341  $ info )
342  ibscl = 2
343  END IF
344 *
345  IF ( m.GE.n ) THEN
346 *
347 * compute QR factorization of A
348 *
349  CALL sgeqr( m, n, a, lda, work( lw2+1 ), lw1,
350  $ work( 1 ), lw2, info )
351  IF ( .NOT.tran ) THEN
352 *
353 * Least-Squares Problem min || A * X - B ||
354 *
355 * B(1:M,1:NRHS) := Q**T * B(1:M,1:NRHS)
356 *
357  CALL sgemqr( 'L' , 'T', m, nrhs, n, a, lda,
358  $ work( lw2+1 ), lw1, b, ldb, work( 1 ), lw2,
359  $ info )
360 *
361 * B(1:N,1:NRHS) := inv(R) * B(1:N,1:NRHS)
362 *
363  CALL strtrs( 'U', 'N', 'N', n, nrhs,
364  $ a, lda, b, ldb, info )
365  IF( info.GT.0 ) THEN
366  RETURN
367  END IF
368  scllen = n
369  ELSE
370 *
371 * Overdetermined system of equations A**T * X = B
372 *
373 * B(1:N,1:NRHS) := inv(R**T) * B(1:N,1:NRHS)
374 *
375  CALL strtrs( 'U', 'T', 'N', n, nrhs,
376  $ a, lda, b, ldb, info )
377 *
378  IF( info.GT.0 ) THEN
379  RETURN
380  END IF
381 *
382 * B(N+1:M,1:NRHS) = ZERO
383 *
384  DO 20 j = 1, nrhs
385  DO 10 i = n + 1, m
386  b( i, j ) = zero
387  10 CONTINUE
388  20 CONTINUE
389 *
390 * B(1:M,1:NRHS) := Q(1:N,:) * B(1:N,1:NRHS)
391 *
392  CALL sgemqr( 'L', 'N', m, nrhs, n, a, lda,
393  $ work( lw2+1 ), lw1, b, ldb, work( 1 ), lw2,
394  $ info )
395 *
396  scllen = m
397 *
398  END IF
399 *
400  ELSE
401 *
402 * Compute LQ factorization of A
403 *
404  CALL sgelq( m, n, a, lda, work( lw2+1 ), lw1,
405  $ work( 1 ), lw2, info )
406 *
407 * workspace at least M, optimally M*NB.
408 *
409  IF( .NOT.tran ) THEN
410 *
411 * underdetermined system of equations A * X = B
412 *
413 * B(1:M,1:NRHS) := inv(L) * B(1:M,1:NRHS)
414 *
415  CALL strtrs( 'L', 'N', 'N', m, nrhs,
416  $ a, lda, b, ldb, info )
417 *
418  IF( info.GT.0 ) THEN
419  RETURN
420  END IF
421 *
422 * B(M+1:N,1:NRHS) = 0
423 *
424  DO 40 j = 1, nrhs
425  DO 30 i = m + 1, n
426  b( i, j ) = zero
427  30 CONTINUE
428  40 CONTINUE
429 *
430 * B(1:N,1:NRHS) := Q(1:N,:)**T * B(1:M,1:NRHS)
431 *
432  CALL sgemlq( 'L', 'T', n, nrhs, m, a, lda,
433  $ work( lw2+1 ), lw1, b, ldb, work( 1 ), lw2,
434  $ info )
435 *
436 * workspace at least NRHS, optimally NRHS*NB
437 *
438  scllen = n
439 *
440  ELSE
441 *
442 * overdetermined system min || A**T * X - B ||
443 *
444 * B(1:N,1:NRHS) := Q * B(1:N,1:NRHS)
445 *
446  CALL sgemlq( 'L', 'N', n, nrhs, m, a, lda,
447  $ work( lw2+1 ), lw1, b, ldb, work( 1 ), lw2,
448  $ info )
449 *
450 * workspace at least NRHS, optimally NRHS*NB
451 *
452 * B(1:M,1:NRHS) := inv(L**T) * B(1:M,1:NRHS)
453 *
454  CALL strtrs( 'Lower', 'Transpose', 'Non-unit', m, nrhs,
455  $ a, lda, b, ldb, info )
456 *
457  IF( info.GT.0 ) THEN
458  RETURN
459  END IF
460 *
461  scllen = m
462 *
463  END IF
464 *
465  END IF
466 *
467 * Undo scaling
468 *
469  IF( iascl.EQ.1 ) THEN
470  CALL slascl( 'G', 0, 0, anrm, smlnum, scllen, nrhs, b, ldb,
471  $ info )
472  ELSE IF( iascl.EQ.2 ) THEN
473  CALL slascl( 'G', 0, 0, anrm, bignum, scllen, nrhs, b, ldb,
474  $ info )
475  END IF
476  IF( ibscl.EQ.1 ) THEN
477  CALL slascl( 'G', 0, 0, smlnum, bnrm, scllen, nrhs, b, ldb,
478  $ info )
479  ELSE IF( ibscl.EQ.2 ) THEN
480  CALL slascl( 'G', 0, 0, bignum, bnrm, scllen, nrhs, b, ldb,
481  $ info )
482  END IF
483 *
484  50 CONTINUE
485  work( 1 ) = real( tszo + lwo )
486  RETURN
487 *
488 * End of SGETSLS
489 *
490  END
subroutine slabad(SMALL, LARGE)
SLABAD
Definition: slabad.f:74
subroutine slascl(TYPE, KL, KU, CFROM, CTO, M, N, A, LDA, INFO)
SLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom.
Definition: slascl.f:143
subroutine slaset(UPLO, M, N, ALPHA, BETA, A, LDA)
SLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values.
Definition: slaset.f:110
subroutine xerbla(SRNAME, INFO)
XERBLA
Definition: xerbla.f:60
subroutine sgetsls(TRANS, M, N, NRHS, A, LDA, B, LDB, WORK, LWORK, INFO)
SGETSLS
Definition: sgetsls.f:162
subroutine strtrs(UPLO, TRANS, DIAG, N, NRHS, A, LDA, B, LDB, INFO)
STRTRS
Definition: strtrs.f:140
subroutine sgelq(M, N, A, LDA, T, TSIZE, WORK, LWORK, INFO)
SGELQ
Definition: sgelq.f:172
subroutine sgemlq(SIDE, TRANS, M, N, K, A, LDA, T, TSIZE, C, LDC, WORK, LWORK, INFO)
SGEMLQ
Definition: sgemlq.f:170
subroutine sgemqr(SIDE, TRANS, M, N, K, A, LDA, T, TSIZE, C, LDC, WORK, LWORK, INFO)
SGEMQR
Definition: sgemqr.f:172
subroutine sgeqr(M, N, A, LDA, T, TSIZE, WORK, LWORK, INFO)
SGEQR
Definition: sgeqr.f:174