cgebak - form the right or left eigenvectors of a complex general matrix by backward transformation on the computed eigenvectors of the balanced matrix output by CGEBAL
SUBROUTINE CGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, INFO) CHARACTER * 1 JOB, SIDE COMPLEX V(LDV,*) INTEGER N, ILO, IHI, M, LDV, INFO REAL SCALE(*)
SUBROUTINE CGEBAK_64( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, * INFO) CHARACTER * 1 JOB, SIDE COMPLEX V(LDV,*) INTEGER*8 N, ILO, IHI, M, LDV, INFO REAL SCALE(*)
SUBROUTINE GEBAK( JOB, SIDE, [N], ILO, IHI, SCALE, [M], V, [LDV], * [INFO]) CHARACTER(LEN=1) :: JOB, SIDE COMPLEX, DIMENSION(:,:) :: V INTEGER :: N, ILO, IHI, M, LDV, INFO REAL, DIMENSION(:) :: SCALE
SUBROUTINE GEBAK_64( JOB, SIDE, [N], ILO, IHI, SCALE, [M], V, [LDV], * [INFO]) CHARACTER(LEN=1) :: JOB, SIDE COMPLEX, DIMENSION(:,:) :: V INTEGER(8) :: N, ILO, IHI, M, LDV, INFO REAL, DIMENSION(:) :: SCALE
#include <sunperf.h>
void cgebak(char job, char side, int n, int ilo, int ihi, float *scale, int m, complex *v, int ldv, int *info);
void cgebak_64(char job, char side, long n, long ilo, long ihi, float *scale, long m, complex *v, long ldv, long *info);
cgebak forms the right or left eigenvectors of a complex general matrix by backward transformation on the computed eigenvectors of the balanced matrix output by CGEBAL.
= 'R': V contains right eigenvectors;
= 'L': V contains left eigenvectors.
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value.