mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-22 21:48:32 -05:00
Remove some obsolete files from jtmode_codes dir.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6633 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
62ed87b40a
commit
bc2a7fb621
File diff suppressed because it is too large
Load Diff
@ -1,24 +0,0 @@
|
|||||||
# run: gnuplot fig_compare.gnuplot
|
|
||||||
# then: pdflatex fig_compare.tex
|
|
||||||
|
|
||||||
set term epslatex standalone size 6in,2*6/3in
|
|
||||||
set output "fig_compare.tex"
|
|
||||||
set xlabel "$E_b/N_0$ (dB)"
|
|
||||||
set ylabel "Word Error Rate"
|
|
||||||
set style func linespoints
|
|
||||||
set key off
|
|
||||||
set tics in
|
|
||||||
set mxtics 2
|
|
||||||
set mytics 10
|
|
||||||
set grid
|
|
||||||
set logscale y
|
|
||||||
set format y "%1.0e"
|
|
||||||
plot [-1:6] [1e-6:1] \
|
|
||||||
"198-72-peg-reg3.results" using 1:(1-$2/1000000) with linespoints lt 1 lw 2 pt 1, \
|
|
||||||
"198-72-peg-reg3.results" using 1:($3/1000000) with linespoints lt 1 lw 2 pt 1, \
|
|
||||||
"198-72-peg-reg4.results" using 1:(1-$2/1000000) with linespoints lt 2 lw 2 pt 2, \
|
|
||||||
"198-72-peg-reg4.results" using 1:($3/1000000) with linespoints lt 2 lw 2 pt 2, \
|
|
||||||
"198-72-peg-irreg-8x3-2x4.results" using 1:(1-$2/1000000) with linespoints lt 3 lw 2 pt 3, \
|
|
||||||
"198-72-peg-irreg-8x3-2x4.results" using 1:($3/1000000) with linespoints lt 3 lw 2 pt 3, \
|
|
||||||
"compare.lab" with labels
|
|
||||||
exit
|
|
@ -1,22 +0,0 @@
|
|||||||
# run: gnuplot fig_compare.gnuplot
|
|
||||||
# then: pdflatex fig_compare.tex
|
|
||||||
|
|
||||||
set term epslatex standalone size 6in,2*6/3in
|
|
||||||
set output "fig_success.tex"
|
|
||||||
set xlabel "$E_b/N_0$ (dB)"
|
|
||||||
set ylabel "Decode Probability"
|
|
||||||
set style func linespoints
|
|
||||||
set key off
|
|
||||||
set tics in
|
|
||||||
set mxtics 2
|
|
||||||
set mytics 10
|
|
||||||
set grid
|
|
||||||
#set logscale y
|
|
||||||
set format y "%2.1f"
|
|
||||||
plot [-1:6] [1e-6:1] \
|
|
||||||
"198-72-peg-irreg-8x3-2x4.results" using 1:($2/1000000) with linespoints lt 1 lw 2 pt 1, \
|
|
||||||
"198-72-peg-irreg-8x3-2x4.results" using 1:($4/10000) with linespoints lt 2 lw 2 pt 2, \
|
|
||||||
"128-80-peg-reg4.results" using 1:($2/1000000) with linespoints lt 3 lw 2 pt 3, \
|
|
||||||
"128-80-peg-reg4.results" using 1:($4/1000) with linespoints lt 4 lw 2 pt 4, \
|
|
||||||
"success.lab" with labels
|
|
||||||
exit
|
|
@ -1,61 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# this script characterizes a single code over a narrow range of Eb/No
|
|
||||||
# note relationship between noise standard deviation, sigma, and Eb/No:
|
|
||||||
# Eb/No = 1/(2*R*sigma^2)
|
|
||||||
# If R=1/2, then Eb/No = 1/sigma^2 Right? Check this.
|
|
||||||
|
|
||||||
set -e # Stop if an error occurs
|
|
||||||
set -v # Echo commands as they are read
|
|
||||||
|
|
||||||
#make-ldpc ldpc-144-72.pchk 80 160 12 evenboth 6x3/4x4 no4cycle
|
|
||||||
#make-ldpc ldpc-144-72.pchk 72 144 33 evenboth 6x3/4x4 no4cycle
|
|
||||||
#make-ldpc ldpc-144-72.pchk 72 144 8 evenboth 3 no4cycle
|
|
||||||
#make-ldpc ldpc-144-72.pchk 72 144 1087 evenboth 3x3/7x4 no4cycle
|
|
||||||
#make-ldpc ldpc-144-72.pchk 72 144 1022 evenboth 4x3/6x4 no4cycle
|
|
||||||
make-ldpc ldpc-144-72.pchk 72 144 3012 evenboth 3x3/7x4 no4cycle
|
|
||||||
|
|
||||||
#cp ldpc-144-72-6x3-4x4-sf1.pchk ldpc-144-72.pchk
|
|
||||||
make-gen ldpc-144-72.pchk ldpc-144-72.gen dense
|
|
||||||
rand-src ldpc-144-72.src 2 72x1000000
|
|
||||||
encode ldpc-144-72.pchk ldpc-144-72.gen ldpc-144-72.src \
|
|
||||||
ldpc-144-72.enc
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.75, Eb/N0 = 2.50 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.75
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.75\
|
|
||||||
prprp 250
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.80, Eb/N0 = 1.94 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.80
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.80\
|
|
||||||
prprp 250
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.85, Eb/N0 = 1.41 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.85
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.85\
|
|
||||||
prprp 250
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.90, Eb/N0 = 0.92 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.90
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.90\
|
|
||||||
prprp 250
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.95, Eb/N0 = 0.45 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.95
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.95\
|
|
||||||
prprp 250
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
@ -1,35 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# Example of a (144,72) LDPC code with 3 checks per bit and 6 bits per
|
|
||||||
# check, tested on Additive White Gaussian Noise channels with noise standard
|
|
||||||
# deviations varying from 0.80 to 0.95.
|
|
||||||
#
|
|
||||||
# Testing is done by transmitting random messages, which is safer (though
|
|
||||||
# slower) than using only zero messages. Decoding is done using a maximum
|
|
||||||
# of 250 iterations of probability propagation.
|
|
||||||
|
|
||||||
set -e # Stop if an error occurs
|
|
||||||
set -v # Echo commands as they are read
|
|
||||||
|
|
||||||
rand-src ldpc-144-72.src 2 72x100000
|
|
||||||
|
|
||||||
for i in `seq 3000 4000`;
|
|
||||||
do
|
|
||||||
seed=$i
|
|
||||||
echo seed $seed
|
|
||||||
make-ldpc ldpc-144-72.pchk 72 144 $seed evenboth 2x3/8x4 no4cycle
|
|
||||||
make-gen ldpc-144-72.pchk ldpc-144-72.gen dense
|
|
||||||
encode ldpc-144-72.pchk ldpc-144-72.gen ldpc-144-72.src \
|
|
||||||
ldpc-144-72.enc
|
|
||||||
|
|
||||||
|
|
||||||
# NOISE STANDARD DEVIATION 0.80, Eb/N0 = 1.94 dB
|
|
||||||
|
|
||||||
transmit ldpc-144-72.enc ldpc-144-72.rec 1 awgn 0.80
|
|
||||||
decode ldpc-144-72.pchk ldpc-144-72.rec ldpc-144-72.dec awgn 0.80\
|
|
||||||
prprp 50
|
|
||||||
verify ldpc-144-72.pchk ldpc-144-72.dec ldpc-144-72.gen \
|
|
||||||
ldpc-144-72.src
|
|
||||||
|
|
||||||
|
|
||||||
done
|
|
@ -1,2 +0,0 @@
|
|||||||
0.9 0.75 "(198,72)"
|
|
||||||
3.5 0.75 "(128,80)"
|
|
Loading…
Reference in New Issue
Block a user