mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-12-23 19:25:37 -05:00
Further improvements for decoding drifting JT65 signals.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8600 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
6d70acef57
commit
e7e1b3c3cc
@ -5,8 +5,28 @@ subroutine afc65b(cx,npts,fsample,nflip,mode65,a,ccfbest,dtbest)
|
||||
complex cx(npts)
|
||||
real a(5),deltaa(5)
|
||||
|
||||
a(1)=0.
|
||||
a(2)=0.
|
||||
a=0.
|
||||
ccfmax=0.
|
||||
istep=mode65
|
||||
do i=-30,30,istep
|
||||
a(1)=i
|
||||
do j=-30,30,istep
|
||||
a(2)=j
|
||||
chisq=fchisq65(cx,npts,fsample,nflip,a,ccf,dtmax)
|
||||
if(ccf.gt.ccfmax) then
|
||||
a1=a(1)
|
||||
a2=a(2)
|
||||
ccfmax=ccf
|
||||
endif
|
||||
! write(81,3081) i,j,ccf,dtmax
|
||||
!3081 format(2i5,2f10.3)
|
||||
enddo
|
||||
enddo
|
||||
|
||||
! a(1)=0.
|
||||
! a(2)=0.
|
||||
a(1)=a1
|
||||
a(2)=a2
|
||||
a(3)=0.
|
||||
a(4)=0.
|
||||
deltaa(1)=2.0*mode65
|
||||
|
Loading…
Reference in New Issue
Block a user