Many changes to the procedures for selecting decodable candidate JT9 signals.

This code may be the new benchmark?


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3274 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2013-05-16 16:02:00 +00:00
parent cef2d18677
commit 6339dc4b7e
11 changed files with 94 additions and 44 deletions
+4 -2
View File
@@ -1,10 +1,12 @@
subroutine zplot9(s)
subroutine zplot9(s,freq,drift)
real s(0:8,85)
character*1 line(85),mark(0:6)
data mark/' ',' ','.','-','+','X','$'/
include 'jt9sync.f90'
write(32,1000) freq,drift
1000 format('Freq:',f7.1,' Drift:',f5.1,' ',60('-'))
do j=8,0,-1
do i=1,85
n=(s(j,i))
@@ -23,7 +25,7 @@ subroutine zplot9(s)
1015 format(87('-'))
write(32,1020) line
1020 format(2x,85a1)
write(32,1015)
call flush(32)
return
end subroutine zplot9