mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
05322bb4f2
Tweak some GUI widget placements. Send stderr to file wsjtx.log. Fix formatting of std message with "R -7", etc., to "R-7". Introduce calls to "timer". Remove console. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2727 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
37 lines
795 B
Fortran
37 lines
795 B
Fortran
subroutine peakdt9(c0,npts8,nsps8,istart,foffset,idtpk)
|
|
|
|
complex c0(0:npts8-1)
|
|
complex zsum
|
|
include 'jt9sync.f90'
|
|
|
|
twopi=8.0*atan(1.0)
|
|
smax=0.
|
|
tstep=0.0625*nsps8/1500.0
|
|
idtmax=2.5/tstep
|
|
|
|
f0=foffset
|
|
dphi=twopi*f0/1500.0
|
|
do idt=-idtmax,idtmax
|
|
i0=istart + 0.0625*nsps8*idt
|
|
sum=0.
|
|
do j=1,16
|
|
i1=max(0,(ii(j)-1)*nsps8 + i0)
|
|
i2=min(npts8-1,i1+nsps8-1)
|
|
phi=0.
|
|
zsum=0.
|
|
do i=i1,i2
|
|
if(i.lt.0 .or. i.gt.npts8-1) cycle
|
|
phi=phi + dphi
|
|
zsum=zsum + c0(i)*cmplx(cos(phi),-sin(phi))
|
|
enddo
|
|
sum=sum + real(zsum)**2 + aimag(zsum)**2
|
|
enddo
|
|
if(sum.gt.smax) then
|
|
idtpk=idt
|
|
smax=sum
|
|
endif
|
|
enddo
|
|
|
|
return
|
|
end subroutine peakdt9
|