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