generated from kenryuS/report-temp
26 lines
879 B
Gnuplot
26 lines
879 B
Gnuplot
set output "exp1-bode.tex"
|
|
set encoding utf8
|
|
set terminal epslatex color font "Arial,12" fontscale 1.0 size 10.5cm,7.5cm
|
|
set style data lines
|
|
set style line 1 linetype 1 linewidth 1 linecolor rgb "red"
|
|
set style line 2 linetype 1 linewidth 1 linecolor rgb "blue"
|
|
set style line 91 linetype 1 linewidth 1 linecolor rgb "black"
|
|
set style line 92 linetype 1 linewidth 0.5 linecolor rgb "gray20"
|
|
set style line 93 linetype 1 linewidth 0.5 linecolor rgb "gray60"
|
|
|
|
set border ls 91
|
|
set tic scale 0.8,0.5
|
|
set grid xtics,mxtics ls 92, ls 93
|
|
set grid ytics,mytics ls 92, ls 93
|
|
|
|
set key left top
|
|
|
|
set log x
|
|
set xrange [1e2:1.5e5]
|
|
set xlabel "Frequency (Hz)"
|
|
set ylabel "Amplitude (dB)"
|
|
|
|
set xtics add ("1k" 1e3, "3k" 3e3, "10k" 1e4, "30k" 3e4, "100k" 1e5)
|
|
|
|
plot "exp1-data-unadjusted.txt" title "Unadjusted" with points pt '*', "exp1-data-adjusted.txt" title "Adjusted" with points pt 'x'
|