LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
chegvd.f
Go to the documentation of this file.
1*> \brief \b CHEGVD
2*
3* =========== DOCUMENTATION ===========
4*
5* Online html documentation available at
6* http://www.netlib.org/lapack/explore-html/
7*
8*> Download CHEGVD + dependencies
9*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/chegvd.f">
10*> [TGZ]</a>
11*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/chegvd.f">
12*> [ZIP]</a>
13*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/chegvd.f">
14*> [TXT]</a>
15*
16* Definition:
17* ===========
18*
19* SUBROUTINE CHEGVD( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK,
20* LWORK, RWORK, LRWORK, IWORK, LIWORK, INFO )
21*
22* .. Scalar Arguments ..
23* CHARACTER JOBZ, UPLO
24* INTEGER INFO, ITYPE, LDA, LDB, LIWORK, LRWORK, LWORK, N
25* ..
26* .. Array Arguments ..
27* INTEGER IWORK( * )
28* REAL RWORK( * ), W( * )
29* COMPLEX A( LDA, * ), B( LDB, * ), WORK( * )
30* ..
31*
32*
33*> \par Purpose:
34* =============
35*>
36*> \verbatim
37*>
38*> CHEGVD computes all the eigenvalues, and optionally, the eigenvectors
39*> of a complex generalized Hermitian-definite eigenproblem, of the form
40*> A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A and
41*> B are assumed to be Hermitian and B is also positive definite.
42*> If eigenvectors are desired, it uses a divide and conquer algorithm.
43*>
44*> \endverbatim
45*
46* Arguments:
47* ==========
48*
49*> \param[in] ITYPE
50*> \verbatim
51*> ITYPE is INTEGER
52*> Specifies the problem type to be solved:
53*> = 1: A*x = (lambda)*B*x
54*> = 2: A*B*x = (lambda)*x
55*> = 3: B*A*x = (lambda)*x
56*> \endverbatim
57*>
58*> \param[in] JOBZ
59*> \verbatim
60*> JOBZ is CHARACTER*1
61*> = 'N': Compute eigenvalues only;
62*> = 'V': Compute eigenvalues and eigenvectors.
63*> \endverbatim
64*>
65*> \param[in] UPLO
66*> \verbatim
67*> UPLO is CHARACTER*1
68*> = 'U': Upper triangles of A and B are stored;
69*> = 'L': Lower triangles of A and B are stored.
70*> \endverbatim
71*>
72*> \param[in] N
73*> \verbatim
74*> N is INTEGER
75*> The order of the matrices A and B. N >= 0.
76*> \endverbatim
77*>
78*> \param[in,out] A
79*> \verbatim
80*> A is COMPLEX array, dimension (LDA, N)
81*> On entry, the Hermitian matrix A. If UPLO = 'U', the
82*> leading N-by-N upper triangular part of A contains the
83*> upper triangular part of the matrix A. If UPLO = 'L',
84*> the leading N-by-N lower triangular part of A contains
85*> the lower triangular part of the matrix A.
86*>
87*> On exit, if JOBZ = 'V', then if INFO = 0, A contains the
88*> matrix Z of eigenvectors. The eigenvectors are normalized
89*> as follows:
90*> if ITYPE = 1 or 2, Z**H*B*Z = I;
91*> if ITYPE = 3, Z**H*inv(B)*Z = I.
92*> If JOBZ = 'N', then on exit the upper triangle (if UPLO='U')
93*> or the lower triangle (if UPLO='L') of A, including the
94*> diagonal, is destroyed.
95*> \endverbatim
96*>
97*> \param[in] LDA
98*> \verbatim
99*> LDA is INTEGER
100*> The leading dimension of the array A. LDA >= max(1,N).
101*> \endverbatim
102*>
103*> \param[in,out] B
104*> \verbatim
105*> B is COMPLEX array, dimension (LDB, N)
106*> On entry, the Hermitian matrix B. If UPLO = 'U', the
107*> leading N-by-N upper triangular part of B contains the
108*> upper triangular part of the matrix B. If UPLO = 'L',
109*> the leading N-by-N lower triangular part of B contains
110*> the lower triangular part of the matrix B.
111*>
112*> On exit, if INFO <= N, the part of B containing the matrix is
113*> overwritten by the triangular factor U or L from the Cholesky
114*> factorization B = U**H*U or B = L*L**H.
115*> \endverbatim
116*>
117*> \param[in] LDB
118*> \verbatim
119*> LDB is INTEGER
120*> The leading dimension of the array B. LDB >= max(1,N).
121*> \endverbatim
122*>
123*> \param[out] W
124*> \verbatim
125*> W is REAL array, dimension (N)
126*> If INFO = 0, the eigenvalues in ascending order.
127*> \endverbatim
128*>
129*> \param[out] WORK
130*> \verbatim
131*> WORK is COMPLEX array, dimension (MAX(1,LWORK))
132*> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
133*> \endverbatim
134*>
135*> \param[in] LWORK
136*> \verbatim
137*> LWORK is INTEGER
138*> The length of the array WORK.
139*> If N <= 1, LWORK >= 1.
140*> If JOBZ = 'N' and N > 1, LWORK >= N + 1.
141*> If JOBZ = 'V' and N > 1, LWORK >= 2*N + N**2.
142*>
143*> If LWORK = -1, then a workspace query is assumed; the routine
144*> only calculates the optimal sizes of the WORK, RWORK and
145*> IWORK arrays, returns these values as the first entries of
146*> the WORK, RWORK and IWORK arrays, and no error message
147*> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
148*> \endverbatim
149*>
150*> \param[out] RWORK
151*> \verbatim
152*> RWORK is REAL array, dimension (MAX(1,LRWORK))
153*> On exit, if INFO = 0, RWORK(1) returns the optimal LRWORK.
154*> \endverbatim
155*>
156*> \param[in] LRWORK
157*> \verbatim
158*> LRWORK is INTEGER
159*> The dimension of the array RWORK.
160*> If N <= 1, LRWORK >= 1.
161*> If JOBZ = 'N' and N > 1, LRWORK >= N.
162*> If JOBZ = 'V' and N > 1, LRWORK >= 1 + 5*N + 2*N**2.
163*>
164*> If LRWORK = -1, then a workspace query is assumed; the
165*> routine only calculates the optimal sizes of the WORK, RWORK
166*> and IWORK arrays, returns these values as the first entries
167*> of the WORK, RWORK and IWORK arrays, and no error message
168*> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
169*> \endverbatim
170*>
171*> \param[out] IWORK
172*> \verbatim
173*> IWORK is INTEGER array, dimension (MAX(1,LIWORK))
174*> On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK.
175*> \endverbatim
176*>
177*> \param[in] LIWORK
178*> \verbatim
179*> LIWORK is INTEGER
180*> The dimension of the array IWORK.
181*> If N <= 1, LIWORK >= 1.
182*> If JOBZ = 'N' and N > 1, LIWORK >= 1.
183*> If JOBZ = 'V' and N > 1, LIWORK >= 3 + 5*N.
184*>
185*> If LIWORK = -1, then a workspace query is assumed; the
186*> routine only calculates the optimal sizes of the WORK, RWORK
187*> and IWORK arrays, returns these values as the first entries
188*> of the WORK, RWORK and IWORK arrays, and no error message
189*> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
190*> \endverbatim
191*>
192*> \param[out] INFO
193*> \verbatim
194*> INFO is INTEGER
195*> = 0: successful exit
196*> < 0: if INFO = -i, the i-th argument had an illegal value
197*> > 0: CPOTRF or CHEEVD returned an error code:
198*> <= N: if INFO = i and JOBZ = 'N', then the algorithm
199*> failed to converge; i off-diagonal elements of an
200*> intermediate tridiagonal form did not converge to
201*> zero;
202*> if INFO = i and JOBZ = 'V', then the algorithm
203*> failed to compute an eigenvalue while working on
204*> the submatrix lying in rows and columns INFO/(N+1)
205*> through mod(INFO,N+1);
206*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
207*> principal minor of order i of B is not positive.
208*> The factorization of B could not be completed and
209*> no eigenvalues or eigenvectors were computed.
210*> \endverbatim
211*
212* Authors:
213* ========
214*
215*> \author Univ. of Tennessee
216*> \author Univ. of California Berkeley
217*> \author Univ. of Colorado Denver
218*> \author NAG Ltd.
219*
220*> \ingroup hegvd
221*
222*> \par Further Details:
223* =====================
224*>
225*> \verbatim
226*>
227*> Modified so that no backsubstitution is performed if CHEEVD fails to
228*> converge (NEIG in old code could be greater than N causing out of
229*> bounds reference to A - reported by Ralf Meyer). Also corrected the
230*> description of INFO and the test on ITYPE. Sven, 16 Feb 05.
231*> \endverbatim
232*
233*> \par Contributors:
234* ==================
235*>
236*> Mark Fahey, Department of Mathematics, Univ. of Kentucky, USA
237*>
238* =====================================================================
239 SUBROUTINE chegvd( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W,
240 $ WORK,
241 $ LWORK, RWORK, LRWORK, IWORK, LIWORK, INFO )
242*
243* -- LAPACK driver routine --
244* -- LAPACK is a software package provided by Univ. of Tennessee, --
245* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
246*
247* .. Scalar Arguments ..
248 CHARACTER JOBZ, UPLO
249 INTEGER INFO, ITYPE, LDA, LDB, LIWORK, LRWORK, LWORK, N
250* ..
251* .. Array Arguments ..
252 INTEGER IWORK( * )
253 REAL RWORK( * ), W( * )
254 COMPLEX A( LDA, * ), B( LDB, * ), WORK( * )
255* ..
256*
257* =====================================================================
258*
259* .. Parameters ..
260 COMPLEX CONE
261 PARAMETER ( CONE = ( 1.0e+0, 0.0e+0 ) )
262* ..
263* .. Local Scalars ..
264 LOGICAL LQUERY, UPPER, WANTZ
265 CHARACTER TRANS
266 INTEGER LIOPT, LIWMIN, LOPT, LROPT, LRWMIN, LWMIN
267* ..
268* .. External Functions ..
269 LOGICAL LSAME
270 REAL SROUNDUP_LWORK
271 EXTERNAL lsame, sroundup_lwork
272* ..
273* .. External Subroutines ..
274 EXTERNAL cheevd, chegst, cpotrf, ctrmm, ctrsm,
275 $ xerbla
276* ..
277* .. Intrinsic Functions ..
278 INTRINSIC max, real
279* ..
280* .. Executable Statements ..
281*
282* Test the input parameters.
283*
284 wantz = lsame( jobz, 'V' )
285 upper = lsame( uplo, 'U' )
286 lquery = ( lwork.EQ.-1 .OR. lrwork.EQ.-1 .OR. liwork.EQ.-1 )
287*
288 info = 0
289 IF( n.LE.1 ) THEN
290 lwmin = 1
291 lrwmin = 1
292 liwmin = 1
293 ELSE IF( wantz ) THEN
294 lwmin = 2*n + n*n
295 lrwmin = 1 + 5*n + 2*n*n
296 liwmin = 3 + 5*n
297 ELSE
298 lwmin = n + 1
299 lrwmin = n
300 liwmin = 1
301 END IF
302 lopt = lwmin
303 lropt = lrwmin
304 liopt = liwmin
305 IF( itype.LT.1 .OR. itype.GT.3 ) THEN
306 info = -1
307 ELSE IF( .NOT.( wantz .OR. lsame( jobz, 'N' ) ) ) THEN
308 info = -2
309 ELSE IF( .NOT.( upper .OR. lsame( uplo, 'L' ) ) ) THEN
310 info = -3
311 ELSE IF( n.LT.0 ) THEN
312 info = -4
313 ELSE IF( lda.LT.max( 1, n ) ) THEN
314 info = -6
315 ELSE IF( ldb.LT.max( 1, n ) ) THEN
316 info = -8
317 END IF
318*
319 IF( info.EQ.0 ) THEN
320 work( 1 ) = sroundup_lwork(lopt)
321 rwork( 1 ) = real( lropt )
322 iwork( 1 ) = liopt
323*
324 IF( lwork.LT.lwmin .AND. .NOT.lquery ) THEN
325 info = -11
326 ELSE IF( lrwork.LT.lrwmin .AND. .NOT.lquery ) THEN
327 info = -13
328 ELSE IF( liwork.LT.liwmin .AND. .NOT.lquery ) THEN
329 info = -15
330 END IF
331 END IF
332*
333 IF( info.NE.0 ) THEN
334 CALL xerbla( 'CHEGVD', -info )
335 RETURN
336 ELSE IF( lquery ) THEN
337 RETURN
338 END IF
339*
340* Quick return if possible
341*
342 IF( n.EQ.0 )
343 $ RETURN
344*
345* Form a Cholesky factorization of B.
346*
347 CALL cpotrf( uplo, n, b, ldb, info )
348 IF( info.NE.0 ) THEN
349 info = n + info
350 RETURN
351 END IF
352*
353* Transform problem to standard eigenvalue problem and solve.
354*
355 CALL chegst( itype, uplo, n, a, lda, b, ldb, info )
356 CALL cheevd( jobz, uplo, n, a, lda, w, work, lwork, rwork,
357 $ lrwork,
358 $ iwork, liwork, info )
359 lopt = int( max( real( lopt ), real( work( 1 ) ) ) )
360 lropt = int( max( real( lropt ), real( rwork( 1 ) ) ) )
361 liopt = int( max( real( liopt ), real( iwork( 1 ) ) ) )
362*
363 IF( wantz .AND. info.EQ.0 ) THEN
364*
365* Backtransform eigenvectors to the original problem.
366*
367 IF( itype.EQ.1 .OR. itype.EQ.2 ) THEN
368*
369* For A*x=(lambda)*B*x and A*B*x=(lambda)*x;
370* backtransform eigenvectors: x = inv(L)**H *y or inv(U)*y
371*
372 IF( upper ) THEN
373 trans = 'N'
374 ELSE
375 trans = 'C'
376 END IF
377*
378 CALL ctrsm( 'Left', uplo, trans, 'Non-unit', n, n, cone,
379 $ b, ldb, a, lda )
380*
381 ELSE IF( itype.EQ.3 ) THEN
382*
383* For B*A*x=(lambda)*x;
384* backtransform eigenvectors: x = L*y or U**H *y
385*
386 IF( upper ) THEN
387 trans = 'C'
388 ELSE
389 trans = 'N'
390 END IF
391*
392 CALL ctrmm( 'Left', uplo, trans, 'Non-unit', n, n, cone,
393 $ b, ldb, a, lda )
394 END IF
395 END IF
396*
397 work( 1 ) = sroundup_lwork(lopt)
398 rwork( 1 ) = real( lropt )
399 iwork( 1 ) = liopt
400*
401 RETURN
402*
403* End of CHEGVD
404*
405 END
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine cheevd(jobz, uplo, n, a, lda, w, work, lwork, rwork, lrwork, iwork, liwork, info)
CHEEVD computes the eigenvalues and, optionally, the left and/or right eigenvectors for HE matrices
Definition cheevd.f:197
subroutine chegst(itype, uplo, n, a, lda, b, ldb, info)
CHEGST
Definition chegst.f:126
subroutine chegvd(itype, jobz, uplo, n, a, lda, b, ldb, w, work, lwork, rwork, lrwork, iwork, liwork, info)
CHEGVD
Definition chegvd.f:242
subroutine cpotrf(uplo, n, a, lda, info)
CPOTRF
Definition cpotrf.f:105
subroutine ctrmm(side, uplo, transa, diag, m, n, alpha, a, lda, b, ldb)
CTRMM
Definition ctrmm.f:177
subroutine ctrsm(side, uplo, transa, diag, m, n, alpha, a, lda, b, ldb)
CTRSM
Definition ctrsm.f:180