mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-27 11:12:27 -04:00
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6561 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
26 lines
1.1 KiB
Gnuplot
26 lines
1.1 KiB
Gnuplot
# 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
|
|
plot [-1:6] [1e-6:1] \
|
|
"128-80-peg-reg4.results" using ($1+0.46):(1-$2/1000000) with linespoints lt 1 lw 2 pt 1, \
|
|
"128-80-peg-reg4.results" using ($1+0.46):($3/1000000) with linespoints lt 1 lw 2 pt 1, \
|
|
"128-80-peg-reg3.results" using ($1+0.46):(1-$2/1000000) with linespoints lt 2 lw 2 pt 2, \
|
|
"128-80-peg-reg3.results" using ($1+0.46):($3/1000000) with linespoints lt 2 lw 2 pt 2, \
|
|
"128-80-sf13.results" using ($1+0.46):(1-$8/1000000) with linespoints lt 3 lw 2 pt 3, \
|
|
"128-80-sf13.results" using ($1+0.46):($9/1000000) with linespoints lt 3 lw 2 pt 3, \
|
|
"128-72-peg-reg4.results" using 1:(1-$2/1000000) with linespoints lt 4 lw 2 pt 4, \
|
|
"128-72-peg-reg4.results" using 1:($3/1000000) with linespoints lt 4 lw 2 pt 4, \
|
|
"compare.lab" with labels
|
|
exit
|