2015-12-06 09:31:12 -05:00
|
|
|
# gnuplot script for "Percent copy" figure
|
|
|
|
# run: gnuplot fig_wer.gnuplot
|
|
|
|
# then: pdflatex fig_wer.tex
|
|
|
|
#
|
2015-12-21 14:48:08 -05:00
|
|
|
set term epslatex standalone size 6in,4in
|
2015-12-06 09:31:12 -05:00
|
|
|
set output "fig_wer.tex"
|
2015-12-21 14:48:08 -05:00
|
|
|
set xlabel "$E_b/N_0$ (dB)"
|
|
|
|
set ylabel "Word Error Rate"
|
2015-12-06 09:31:12 -05:00
|
|
|
set style func linespoints
|
2015-12-21 14:48:08 -05:00
|
|
|
set key off
|
2015-12-06 09:31:12 -05:00
|
|
|
set tics in
|
|
|
|
set mxtics 2
|
|
|
|
set mytics 10
|
|
|
|
set grid
|
|
|
|
set logscale y
|
2015-12-26 10:47:49 -05:00
|
|
|
plot [3:7] "ftdata-100000.dat" using ($1+29.1):(1-$2) with linespoints lt 1 pt 7 title 'FT-100K', \
|
|
|
|
"ftdata-10000.dat" using ($1+29.1):(1-$2) with linespoints lt 1 pt 7 title 'FT-10K', \
|
|
|
|
"ftdata-1000.dat" using ($1+29.1):(1-$2) with linespoints lt 1 pt 7 title 'FT-1K', \
|
|
|
|
"kvasd-8.dat" using ($1+29.1):(1-$2) with linespoints lt 2 pt 8 title 'KV-8', \
|
|
|
|
"kvasd-12.dat" using ($1+29.1):(1-$2) with linespoints lt 2 pt 8 title 'KV-12', \
|
|
|
|
"kvasd-15.dat" using ($1+29.1):(1-$2) with linespoints lt 2 pt 8 title 'KV-15', \
|
2015-12-21 14:48:08 -05:00
|
|
|
"bmdata.dat" using ($1+29.1):(1-$2) with linespoints pt 7 title 'BM', \
|
|
|
|
"wer.lab" with labels
|