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

NAME

6       DSPGST - a real symmetric-definite generalized eigenproblem to standard
7       form, using packed storage
8

SYNOPSIS

10       SUBROUTINE DSPGST( ITYPE, UPLO, N, AP, BP, INFO )
11
12           CHARACTER      UPLO
13
14           INTEGER        INFO, ITYPE, N
15
16           DOUBLE         PRECISION AP( * ), BP( * )
17

PURPOSE

19       DSPGST reduces a real symmetric-definite  generalized  eigenproblem  to
20       standard form, using packed storage.
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 DPPTRF.
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       AP      (input/output) DOUBLE PRECISION array, dimension (N*(N+1)/2)
45               On  entry,  the upper or lower triangle of the symmetric matrix
46               A, packed columnwise in a linear array.  The j-th column  of  A
47               is  stored  in  the  array AP as follows: if UPLO = 'U', AP(i +
48               (j-1)*j/2) =  A(i,j)  for  1<=i<=j;  if  UPLO  =  'L',  AP(i  +
49               (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n.
50
51               On  exit,  if  INFO  = 0, the transformed matrix, stored in the
52               same format as A.
53
54       BP      (input) DOUBLE PRECISION array, dimension (N*(N+1)/2)
55               The triangular factor from the  Cholesky  factorization  of  B,
56               stored in the same format as A, as returned by DPPTRF.
57
58       INFO    (output) INTEGER
59               = 0:  successful exit
60               < 0:  if INFO = -i, the i-th argument had an illegal value
61
62
63
64 LAPACK routine (version 3.1)    November 2006                       DSPGST(1)
Impressum