generated from kenryuS/report-temp
28 lines
956 B
Gnuplot
28 lines
956 B
Gnuplot
set output "exp1-bode.tex"
|
|
#set output "exp1-bode.png"
|
|
set encoding utf8
|
|
set terminal epslatex color font "Arial,12" fontscale 1.0 size 10.5cm,7.5cm
|
|
#set terminal png font "Arial,12" size 1800,1000
|
|
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" ls 1 smooth bezier title "Unadjusted", "exp1-data-adjusted.txt" ls 2 smooth bezier title "Adjusted"
|