mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
545b2b2813
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2750 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
42 lines
870 B
Fortran
42 lines
870 B
Fortran
subroutine redsync(ss,ntrperiod,ihsym,iz,red)
|
|
|
|
Parameter (NSMAX=22000)
|
|
real*4 ss(184,NSMAX)
|
|
real*4 red(NSMAX)
|
|
include 'jt9sync.f90'
|
|
|
|
lagmax=9
|
|
if(ntrperiod.eq.2) lagmax=5
|
|
if(ntrperiod.eq.5) lagmax=2
|
|
if(ntrperiod.eq.10) lagmax=1
|
|
if(ntrperiod.eq.30) lagmax=1
|
|
|
|
do i=1,iz
|
|
smax=0.
|
|
do lag=-lagmax,lagmax
|
|
sig=0.
|
|
do j=1,16
|
|
k=ii2(j)+lag
|
|
if(k.ge.5 .and. k.le.ihsym) then
|
|
sig=sig + ss(k,i) - 0.5*(ss(k-2,i)+ss(k-4,i))
|
|
endif
|
|
enddo
|
|
if(sig.gt.smax) smax=sig
|
|
enddo
|
|
red(i)=smax
|
|
enddo
|
|
call pctile(red,iz,50,xmed)
|
|
if(xmed.le.0.0) xmed=1.0
|
|
red=red/xmed
|
|
smax=0.
|
|
do i=1,iz
|
|
red(i)=2.0*sqrt(red(i))
|
|
smax=max(smax,red(i))
|
|
enddo
|
|
h=10.
|
|
if(smax.gt.h) red=red*(h/smax)
|
|
|
|
return
|
|
end subroutine redsync
|
|
|