1SSYGST(1)                LAPACK routine (version 3.1)                SSYGST(1)
2
3
4

NAME

6       SSYGST - a real symmetric-definite generalized eigenproblem to standard
7       form
8

SYNOPSIS

10       SUBROUTINE SSYGST( ITYPE, UPLO, N, A, LDA, B, LDB, INFO )
11
12           CHARACTER      UPLO
13
14           INTEGER        INFO, ITYPE, LDA, LDB, N
15
16           REAL           A( LDA, * ), B( LDB, * )
17

PURPOSE

19       SSYGST reduces a real symmetric-definite  generalized  eigenproblem  to
20       standard form.
21
22       If ITYPE = 1, the problem is A*x = lambda*B*x,
23       and A is overwritten by inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T)
24
25       If ITYPE = 2 or 3, the problem is A*B*x = lambda*x or
26       B*A*x = lambda*x, and A is overwritten by U*A*U**T or L**T*A*L.
27
28       B must have been previously factorized as U**T*U or L*L**T by SPOTRF.
29
30

ARGUMENTS

32       ITYPE   (input) INTEGER
33               = 1: compute inv(U**T)*A*inv(U) or inv(L)*A*inv(L**T);
34               = 2 or 3: compute U*A*U**T or L**T*A*L.
35
36       UPLO    (input) CHARACTER*1
37               =  'U':   Upper  triangle  of  A is stored and B is factored as
38               U**T*U; = 'L':  Lower triangle of A is stored and B is factored
39               as L*L**T.
40
41       N       (input) INTEGER
42               The order of the matrices A and B.  N >= 0.
43
44       A       (input/output) REAL array, dimension (LDA,N)
45               On  entry,  the symmetric matrix A.  If UPLO = 'U', the leading
46               N-by-N upper triangular part of A contains the upper triangular
47               part of the matrix A, and the strictly lower triangular part of
48               A is not referenced.  If UPLO = 'L', the leading  N-by-N  lower
49               triangular  part of A contains the lower triangular part of the
50               matrix A, and the strictly upper triangular part of  A  is  not
51               referenced.
52
53               On  exit,  if  INFO  = 0, the transformed matrix, stored in the
54               same format as A.
55
56       LDA     (input) INTEGER
57               The leading dimension of the array A.  LDA >= max(1,N).
58
59       B       (input) REAL array, dimension (LDB,N)
60               The triangular factor from the Cholesky factorization of B,  as
61               returned by SPOTRF.
62
63       LDB     (input) INTEGER
64               The leading dimension of the array B.  LDB >= max(1,N).
65
66       INFO    (output) INTEGER
67               = 0:  successful exit
68               < 0:  if INFO = -i, the i-th argument had an illegal value
69
70
71
72 LAPACK routine (version 3.1)    November 2006                       SSYGST(1)
Impressum