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

NAME

6       CGGBAK - the right or left eigenvectors of a complex generalized eigen‐
7       value problem A*x = lambda*B*x, by backward transformation on the  com‐
8       puted eigenvectors of the balanced pair of matrices output by CGGBAL
9

SYNOPSIS

11       SUBROUTINE CGGBAK( JOB,  SIDE,  N, ILO, IHI, LSCALE, RSCALE, M, V, LDV,
12                          INFO )
13
14           CHARACTER      JOB, SIDE
15
16           INTEGER        IHI, ILO, INFO, LDV, M, N
17
18           REAL           LSCALE( * ), RSCALE( * )
19
20           COMPLEX        V( LDV, * )
21

PURPOSE

23       CGGBAK forms the right or left eigenvectors of  a  complex  generalized
24       eigenvalue  problem A*x = lambda*B*x, by backward transformation on the
25       computed eigenvectors of the balanced pair of matrices output  by  CGG‐
26       BAL.
27
28

ARGUMENTS

30       JOB     (input) CHARACTER*1
31               Specifies the type of backward transformation required:
32               = 'N':  do nothing, return immediately;
33               = 'P':  do backward transformation for permutation only;
34               = 'S':  do backward transformation for scaling only;
35               =  'B':   do  backward transformations for both permutation and
36               scaling.  JOB must be the same as the argument JOB supplied  to
37               CGGBAL.
38
39       SIDE    (input) CHARACTER*1
40               = 'R':  V contains right eigenvectors;
41               = 'L':  V contains left eigenvectors.
42
43       N       (input) INTEGER
44               The number of rows of the matrix V.  N >= 0.
45
46       ILO     (input) INTEGER
47               IHI      (input) INTEGER The integers ILO and IHI determined by
48               CGGBAL.  1 <= ILO <= IHI <= N, if N > 0; ILO=1  and  IHI=0,  if
49               N=0.
50
51       LSCALE  (input) REAL array, dimension (N)
52               Details  of  the permutations and/or scaling factors applied to
53               the left side of A and B, as returned by CGGBAL.
54
55       RSCALE  (input) REAL array, dimension (N)
56               Details of the permutations and/or scaling factors  applied  to
57               the right side of A and B, as returned by CGGBAL.
58
59       M       (input) INTEGER
60               The number of columns of the matrix V.  M >= 0.
61
62       V       (input/output) COMPLEX array, dimension (LDV,M)
63               On entry, the matrix of right or left eigenvectors to be trans‐
64               formed, as returned by CTGEVC.  On exit, V  is  overwritten  by
65               the transformed eigenvectors.
66
67       LDV     (input) INTEGER
68               The leading dimension of the matrix V. LDV >= max(1,N).
69
70       INFO    (output) INTEGER
71               = 0:  successful exit.
72               < 0:  if INFO = -i, the i-th argument had an illegal value.
73

FURTHER DETAILS

75       See R.C. Ward, Balancing the generalized eigenvalue problem,
76                      SIAM J. Sci. Stat. Comp. 2 (1981), 141-152.
77
78
79
80
81 LAPACK routine (version 3.1)    November 2006                       CGGBAK(1)
Impressum