mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-01 21:45:00 -04:00
Use exponential message averaging (ntc=3) rather than simple sums in Q65.
This commit is contained in:
+3
-1
@@ -234,7 +234,9 @@ subroutine q65_symspec(iwave,nmax,iz,jz,s1)
|
||||
enddo
|
||||
enddo
|
||||
if(lnewdat) then
|
||||
s1a(:,:,iseq)=s1a(:,:,iseq) + s1
|
||||
ntc=3
|
||||
u=1.0/ntc
|
||||
s1a(:,:,iseq)=u*s1 + (1.0-u)*s1a(:,:,iseq)
|
||||
navg(iseq)=navg(iseq) + 1
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user