LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine clsets ( integer  M,
integer  P,
integer  N,
complex, dimension( lda, * )  A,
complex, dimension( lda, * )  AF,
integer  LDA,
complex, dimension( ldb, * )  B,
complex, dimension( ldb, * )  BF,
integer  LDB,
complex, dimension( * )  C,
complex, dimension( * )  CF,
complex, dimension( * )  D,
complex, dimension( * )  DF,
complex, dimension( * )  X,
complex, dimension( lwork )  WORK,
integer  LWORK,
real, dimension( * )  RWORK,
real, dimension( 2 )  RESULT 
)

CLSETS

Purpose:
 CLSETS tests CGGLSE - a subroutine for solving linear equality
 constrained least square problem (LSE).
Parameters
[in]M
          M is INTEGER
          The number of rows of the matrix A.  M >= 0.
[in]P
          P is INTEGER
          The number of rows of the matrix B.  P >= 0.
[in]N
          N is INTEGER
          The number of columns of the matrices A and B.  N >= 0.
[in]A
          A is COMPLEX array, dimension (LDA,N)
          The M-by-N matrix A.
[out]AF
          AF is COMPLEX array, dimension (LDA,N)
[in]LDA
          LDA is INTEGER
          The leading dimension of the arrays A, AF, Q and R.
          LDA >= max(M,N).
[in]B
          B is COMPLEX array, dimension (LDB,N)
          The P-by-N matrix A.
[out]BF
          BF is COMPLEX array, dimension (LDB,N)
[in]LDB
          LDB is INTEGER
          The leading dimension of the arrays B, BF, V and S.
          LDB >= max(P,N).
[in]C
          C is COMPLEX array, dimension( M )
          the vector C in the LSE problem.
[out]CF
          CF is COMPLEX array, dimension( M )
[in]D
          D is COMPLEX array, dimension( P )
          the vector D in the LSE problem.
[out]DF
          DF is COMPLEX array, dimension( P )
[out]X
          X is COMPLEX array, dimension( N )
          solution vector X in the LSE problem.
[out]WORK
          WORK is COMPLEX array, dimension (LWORK)
[in]LWORK
          LWORK is INTEGER
          The dimension of the array WORK.
[out]RWORK
          RWORK is REAL array, dimension (M)
[out]RESULT
          RESULT is REAL array, dimension (2)
          The test ratios:
            RESULT(1) = norm( A*x - c )/ norm(A)*norm(X)*EPS
            RESULT(2) = norm( B*x - d )/ norm(B)*norm(X)*EPS
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 157 of file clsets.f.

157 *
158 * -- LAPACK test routine (version 3.4.0) --
159 * -- LAPACK is a software package provided by Univ. of Tennessee, --
160 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
161 * November 2011
162 *
163 * .. Scalar Arguments ..
164  INTEGER lda, ldb, lwork, m, p, n
165 * ..
166 * .. Array Arguments ..
167  REAL result( 2 ), rwork( * )
168  COMPLEX a( lda, * ), af( lda, * ), b( ldb, * ),
169  $ bf( ldb, * ), c( * ), d( * ), cf( * ),
170  $ df( * ), work( lwork ), x( * )
171 *
172 * ====================================================================
173 *
174 * ..
175 * .. Local Scalars ..
176  INTEGER info
177 * ..
178 * .. External Subroutines ..
179  EXTERNAL cgglse, clacpy, cget02
180 * ..
181 * .. Executable Statements ..
182 *
183 * Copy the matrices A and B to the arrays AF and BF,
184 * and the vectors C and D to the arrays CF and DF,
185 *
186  CALL clacpy( 'Full', m, n, a, lda, af, lda )
187  CALL clacpy( 'Full', p, n, b, ldb, bf, ldb )
188  CALL ccopy( m, c, 1, cf, 1 )
189  CALL ccopy( p, d, 1, df, 1 )
190 *
191 * Solve LSE problem
192 *
193  CALL cgglse( m, n, p, af, lda, bf, ldb, cf, df, x,
194  $ work, lwork, info )
195 *
196 * Test the residual for the solution of LSE
197 *
198 * Compute RESULT(1) = norm( A*x - c ) / norm(A)*norm(X)*EPS
199 *
200  CALL ccopy( m, c, 1, cf, 1 )
201  CALL ccopy( p, d, 1, df, 1 )
202  CALL cget02( 'No transpose', m, n, 1, a, lda, x, n, cf, m,
203  $ rwork, result( 1 ) )
204 *
205 * Compute result(2) = norm( B*x - d ) / norm(B)*norm(X)*EPS
206 *
207  CALL cget02( 'No transpose', p, n, 1, b, ldb, x, n, df, p,
208  $ rwork, result( 2 ) )
209 *
210  RETURN
211 *
212 * End of CLSETS
213 *
subroutine cget02(TRANS, M, N, NRHS, A, LDA, X, LDX, B, LDB, RWORK, RESID)
CGET02
Definition: cget02.f:135
subroutine cgglse(M, N, P, A, LDA, B, LDB, C, D, X, WORK, LWORK, INFO)
CGGLSE solves overdetermined or underdetermined systems for OTHER matrices
Definition: cgglse.f:182
subroutine clacpy(UPLO, M, N, A, LDA, B, LDB)
CLACPY copies all or part of one two-dimensional array to another.
Definition: clacpy.f:105
subroutine ccopy(N, CX, INCX, CY, INCY)
CCOPY
Definition: ccopy.f:52

Here is the call graph for this function:

Here is the caller graph for this function: