mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 06:23:39 +01:00
c977aa998f
Replace amos with slatec
61 lines
2.3 KiB
Fortran
61 lines
2.3 KiB
Fortran
*DECK COSQI
|
|
SUBROUTINE COSQI (N, WSAVE)
|
|
C***BEGIN PROLOGUE COSQI
|
|
C***PURPOSE Initialize a work array for COSQF and COSQB.
|
|
C***LIBRARY SLATEC (FFTPACK)
|
|
C***CATEGORY J1A3
|
|
C***TYPE SINGLE PRECISION (COSQI-S)
|
|
C***KEYWORDS COSINE FOURIER TRANSFORM, FFTPACK
|
|
C***AUTHOR Swarztrauber, P. N., (NCAR)
|
|
C***DESCRIPTION
|
|
C
|
|
C Subroutine COSQI initializes the work array WSAVE which is used in
|
|
C both COSQF1 and COSQB1. The prime factorization of N together with
|
|
C a tabulation of the trigonometric functions are computed and
|
|
C stored in WSAVE.
|
|
C
|
|
C Input Parameter
|
|
C
|
|
C N the length of the array to be transformed. The method
|
|
C is most efficient when N is a product of small primes.
|
|
C
|
|
C Output Parameter
|
|
C
|
|
C WSAVE a work array which must be dimensioned at least 3*N+15.
|
|
C The same work array can be used for both COSQF1 and COSQB1
|
|
C as long as N remains unchanged. Different WSAVE arrays
|
|
C are required for different values of N. The contents of
|
|
C WSAVE must not be changed between calls of COSQF1 or COSQB1.
|
|
C
|
|
C***REFERENCES P. N. Swarztrauber, Vectorizing the FFTs, in Parallel
|
|
C Computations (G. Rodrigue, ed.), Academic Press,
|
|
C 1982, pp. 51-83.
|
|
C***ROUTINES CALLED RFFTI
|
|
C***REVISION HISTORY (YYMMDD)
|
|
C 790601 DATE WRITTEN
|
|
C 830401 Modified to use SLATEC library source file format.
|
|
C 860115 Modified by Ron Boisvert to adhere to Fortran 77 by
|
|
C (a) changing dummy array size declarations (1) to (*),
|
|
C (b) changing references to intrinsic function FLOAT
|
|
C to REAL, and
|
|
C (c) changing definition of variable PIH by using
|
|
C FORTRAN intrinsic function ATAN instead of a DATA
|
|
C statement.
|
|
C 881128 Modified by Dick Valent to meet prologue standards.
|
|
C 890531 Changed all specific intrinsics to generic. (WRB)
|
|
C 890531 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 COSQI
|
|
DIMENSION WSAVE(*)
|
|
C***FIRST EXECUTABLE STATEMENT COSQI
|
|
PIH = 2.*ATAN(1.)
|
|
DT = PIH/N
|
|
FK = 0.
|
|
DO 101 K=1,N
|
|
FK = FK+1.
|
|
WSAVE(K) = COS(FK*DT)
|
|
101 CONTINUE
|
|
CALL RFFTI (N,WSAVE(N+1))
|
|
RETURN
|
|
END
|