mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-17 17:42:02 -05:00
Fixed a bug -- probably very minor -- in filbig
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@818 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
88bed8663c
commit
436067d9a8
3
filbig.f
3
filbig.f
@ -70,6 +70,7 @@ C If we just have a new f0, continue with the existing ca and cb.
|
||||
ca(i)=cmplx(float(int(id(1,i))),float(int(id(2,i))))
|
||||
cb(i)=cmplx(float(int(id(3,i))),float(int(id(4,i))))
|
||||
enddo
|
||||
|
||||
if(nmax.lt.NFFT1) then
|
||||
do i=nmax+1,NFFT1
|
||||
ca(i)=0.
|
||||
@ -93,7 +94,7 @@ C i0 is the bin number in ca and cb closest to f0.
|
||||
enddo
|
||||
do i=nh+1,NFFT2
|
||||
j=i0+i-1-NFFT2
|
||||
if(j.lt.1) j=j+NFFT2
|
||||
if(j.lt.1) j=j+NFFT1
|
||||
c4a(i)=rfilt(i)*ca(j)
|
||||
c4b(i)=rfilt(i)*cb(j)
|
||||
enddo
|
||||
|
Loading…
Reference in New Issue
Block a user