mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
c977aa998f
Replace amos with slatec
108 lines
3.7 KiB
Fortran
108 lines
3.7 KiB
Fortran
*DECK CBABK2
|
|
SUBROUTINE CBABK2 (NM, N, LOW, IGH, SCALE, M, ZR, ZI)
|
|
C***BEGIN PROLOGUE CBABK2
|
|
C***PURPOSE Form the eigenvectors of a complex general matrix from the
|
|
C eigenvectors of matrix output from CBAL.
|
|
C***LIBRARY SLATEC (EISPACK)
|
|
C***CATEGORY D4C4
|
|
C***TYPE COMPLEX (BALBAK-S, CBABK2-C)
|
|
C***KEYWORDS EIGENVECTORS, EISPACK
|
|
C***AUTHOR Smith, B. T., et al.
|
|
C***DESCRIPTION
|
|
C
|
|
C This subroutine is a translation of the ALGOL procedure
|
|
C CBABK2, which is a complex version of BALBAK,
|
|
C NUM. MATH. 13, 293-304(1969) by Parlett and Reinsch.
|
|
C HANDBOOK FOR AUTO. COMP., VOL.II-LINEAR ALGEBRA, 315-326(1971).
|
|
C
|
|
C This subroutine forms the eigenvectors of a COMPLEX GENERAL
|
|
C matrix by back transforming those of the corresponding
|
|
C balanced matrix determined by CBAL.
|
|
C
|
|
C On INPUT
|
|
C
|
|
C NM must be set to the row dimension of the two-dimensional
|
|
C array parameters, ZR and ZI, as declared in the calling
|
|
C program dimension statement. NM is an INTEGER variable.
|
|
C
|
|
C N is the order of the matrix Z=(ZR,ZI). N is an INTEGER
|
|
C variable. N must be less than or equal to NM.
|
|
C
|
|
C LOW and IGH are INTEGER variables determined by CBAL.
|
|
C
|
|
C SCALE contains information determining the permutations and
|
|
C scaling factors used by CBAL. SCALE is a one-dimensional
|
|
C REAL array, dimensioned SCALE(N).
|
|
C
|
|
C M is the number of eigenvectors to be back transformed.
|
|
C M is an INTEGER variable.
|
|
C
|
|
C ZR and ZI contain the real and imaginary parts, respectively,
|
|
C of the eigenvectors to be back transformed in their first
|
|
C M columns. ZR and ZI are two-dimensional REAL arrays,
|
|
C dimensioned ZR(NM,M) and ZI(NM,M).
|
|
C
|
|
C On OUTPUT
|
|
C
|
|
C ZR and ZI contain the real and imaginary parts,
|
|
C respectively, of the transformed eigenvectors
|
|
C in their first M columns.
|
|
C
|
|
C Questions and comments should be directed to B. S. Garbow,
|
|
C APPLIED MATHEMATICS DIVISION, ARGONNE NATIONAL LABORATORY
|
|
C ------------------------------------------------------------------
|
|
C
|
|
C***REFERENCES B. T. Smith, J. M. Boyle, J. J. Dongarra, B. S. Garbow,
|
|
C Y. Ikebe, V. C. Klema and C. B. Moler, Matrix Eigen-
|
|
C system Routines - EISPACK Guide, Springer-Verlag,
|
|
C 1976.
|
|
C***ROUTINES CALLED (NONE)
|
|
C***REVISION HISTORY (YYMMDD)
|
|
C 760101 DATE WRITTEN
|
|
C 890831 Modified array declarations. (WRB)
|
|
C 890831 REVISION DATE from Version 3.2
|
|
C 891214 Prologue converted to Version 4.0 format. (BAB)
|
|
C 920501 Reformatted the REFERENCES section. (WRB)
|
|
C***END PROLOGUE CBABK2
|
|
C
|
|
INTEGER I,J,K,M,N,II,NM,IGH,LOW
|
|
REAL SCALE(*),ZR(NM,*),ZI(NM,*)
|
|
REAL S
|
|
C
|
|
C***FIRST EXECUTABLE STATEMENT CBABK2
|
|
IF (M .EQ. 0) GO TO 200
|
|
IF (IGH .EQ. LOW) GO TO 120
|
|
C
|
|
DO 110 I = LOW, IGH
|
|
S = SCALE(I)
|
|
C .......... LEFT HAND EIGENVECTORS ARE BACK TRANSFORMED
|
|
C IF THE FOREGOING STATEMENT IS REPLACED BY
|
|
C S=1.0E0/SCALE(I). ..........
|
|
DO 100 J = 1, M
|
|
ZR(I,J) = ZR(I,J) * S
|
|
ZI(I,J) = ZI(I,J) * S
|
|
100 CONTINUE
|
|
C
|
|
110 CONTINUE
|
|
C .......... FOR I=LOW-1 STEP -1 UNTIL 1,
|
|
C IGH+1 STEP 1 UNTIL N DO -- ..........
|
|
120 DO 140 II = 1, N
|
|
I = II
|
|
IF (I .GE. LOW .AND. I .LE. IGH) GO TO 140
|
|
IF (I .LT. LOW) I = LOW - II
|
|
K = SCALE(I)
|
|
IF (K .EQ. I) GO TO 140
|
|
C
|
|
DO 130 J = 1, M
|
|
S = ZR(I,J)
|
|
ZR(I,J) = ZR(K,J)
|
|
ZR(K,J) = S
|
|
S = ZI(I,J)
|
|
ZI(I,J) = ZI(K,J)
|
|
ZI(K,J) = S
|
|
130 CONTINUE
|
|
C
|
|
140 CONTINUE
|
|
C
|
|
200 RETURN
|
|
END
|