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

NAME

6       CGEBAK  - the right or left eigenvectors of a complex general matrix by
7       backward transformation on the computed eigenvectors  of  the  balanced
8       matrix output by CGEBAL
9

SYNOPSIS

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

PURPOSE

22       CGEBAK forms the right or left eigenvectors of a complex general matrix
23       by backward transformation on the computed eigenvectors of the balanced
24       matrix output by CGEBAL.
25
26

ARGUMENTS

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