1SSYGV(1) LAPACK driver routine (version 3.1) SSYGV(1)
2
3
4
6 SSYGV - all the eigenvalues, and optionally, the eigenvectors of a real
7 generalized symmetric-definite eigenproblem, of the form
8 A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x
9
11 SUBROUTINE SSYGV( ITYPE, JOBZ, UPLO, N, A, LDA, B, LDB, W, WORK, LWORK,
12 INFO )
13
14 CHARACTER JOBZ, UPLO
15
16 INTEGER INFO, ITYPE, LDA, LDB, LWORK, N
17
18 REAL A( LDA, * ), B( LDB, * ), W( * ), WORK( * )
19
21 SSYGV computes all the eigenvalues, and optionally, the eigenvectors of
22 a real generalized symmetric-definite eigenproblem, of the form
23 A*x=(lambda)*B*x, A*Bx=(lambda)*x, or B*A*x=(lambda)*x. Here A and B
24 are assumed to be symmetric and B is also
25 positive definite.
26
27
29 ITYPE (input) INTEGER
30 Specifies the problem type to be solved:
31 = 1: A*x = (lambda)*B*x
32 = 2: A*B*x = (lambda)*x
33 = 3: B*A*x = (lambda)*x
34
35 JOBZ (input) CHARACTER*1
36 = 'N': Compute eigenvalues only;
37 = 'V': Compute eigenvalues and eigenvectors.
38
39 UPLO (input) CHARACTER*1
40 = 'U': Upper triangles of A and B are stored;
41 = 'L': Lower triangles of A and B are stored.
42
43 N (input) INTEGER
44 The order of the matrices A and B. N >= 0.
45
46 A (input/output) REAL array, dimension (LDA, N)
47 On entry, the symmetric matrix A. If UPLO = 'U', the leading
48 N-by-N upper triangular part of A contains the upper triangular
49 part of the matrix A. If UPLO = 'L', the leading N-by-N lower
50 triangular part of A contains the lower triangular part of the
51 matrix A.
52
53 On exit, if JOBZ = 'V', then if INFO = 0, A contains the matrix
54 Z of eigenvectors. The eigenvectors are normalized as follows:
55 if ITYPE = 1 or 2, Z**T*B*Z = I; if ITYPE = 3, Z**T*inv(B)*Z =
56 I. If JOBZ = 'N', then on exit the upper triangle (if
57 UPLO='U') or the lower triangle (if UPLO='L') of A, including
58 the diagonal, is destroyed.
59
60 LDA (input) INTEGER
61 The leading dimension of the array A. LDA >= max(1,N).
62
63 B (input/output) REAL array, dimension (LDB, N)
64 On entry, the symmetric positive definite matrix B. If UPLO =
65 'U', the leading N-by-N upper triangular part of B contains the
66 upper triangular part of the matrix B. If UPLO = 'L', the
67 leading N-by-N lower triangular part of B contains the lower
68 triangular part of the matrix B.
69
70 On exit, if INFO <= N, the part of B containing the matrix is
71 overwritten by the triangular factor U or L from the Cholesky
72 factorization B = U**T*U or B = L*L**T.
73
74 LDB (input) INTEGER
75 The leading dimension of the array B. LDB >= max(1,N).
76
77 W (output) REAL array, dimension (N)
78 If INFO = 0, the eigenvalues in ascending order.
79
80 WORK (workspace/output) REAL array, dimension (MAX(1,LWORK))
81 On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
82
83 LWORK (input) INTEGER
84 The length of the array WORK. LWORK >= max(1,3*N-1). For
85 optimal efficiency, LWORK >= (NB+2)*N, where NB is the block‐
86 size for SSYTRD returned by ILAENV.
87
88 If LWORK = -1, then a workspace query is assumed; the routine
89 only calculates the optimal size of the WORK array, returns
90 this value as the first entry of the WORK array, and no error
91 message related to LWORK is issued by XERBLA.
92
93 INFO (output) INTEGER
94 = 0: successful exit
95 < 0: if INFO = -i, the i-th argument had an illegal value
96 > 0: SPOTRF or SSYEV returned an error code:
97 <= N: if INFO = i, SSYEV failed to converge; i off-diagonal
98 elements of an intermediate tridiagonal form did not converge
99 to zero; > N: if INFO = N + i, for 1 <= i <= N, then the
100 leading minor of order i of B is not positive definite. The
101 factorization of B could not be completed and no eigenvalues or
102 eigenvectors were computed.
103
104
105
106 LAPACK driver routine (version 3.N1o)vember 2006 SSYGV(1)