mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-10-27 19:10:37 -04:00
13 lines
167 B
FortranFixed
13 lines
167 B
FortranFixed
|
|
subroutine xfft(x,nfft)
|
||
|
|
|
||
|
|
C Real-to-complex FFT.
|
||
|
|
|
||
|
|
real x(nfft)
|
||
|
|
|
||
|
|
! call four2(x,nfft,1,-1,0)
|
||
|
|
call four2a(x,nfft,1,-1,0)
|
||
|
|
|
||
|
|
return
|
||
|
|
end
|
||
|
|
|