1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-03-28 23:19:00 -04:00

Test smoothing of symbol spectra ...

This commit is contained in:
Joe Taylor 2024-02-10 09:29:57 -05:00
parent b6ad4d701d
commit 05d720201a

View File

@ -21,6 +21,12 @@ subroutine hard_symbols(crcvd,f,t,jdat)
do i=0,NSPS-1
s(i)=real(c(i))**2 + aimag(c(i))**2
enddo
! Could we measure fspread, perhaps in the sync routine, and use that to
! decide whether to smooth spectra here?
! call smo121(s,NSPS) !Helps for LD, HM propagation...
! call smo121(s,NSPS)
ipk=maxloc(s)
ipk(1)=ipk(1)-j0
if(ipk(1).ge.64) then
@ -29,7 +35,6 @@ subroutine hard_symbols(crcvd,f,t,jdat)
jdat(n)=ipk(1)+256-64
endif
enddo
! jdat(NN-1:nn)=0
return
end subroutine hard_symbols