This commit is contained in:
2026-04-26 20:52:05 +09:00
parent 65784275b8
commit 42e30c4949
13 changed files with 334 additions and 385 deletions
+1 -3
View File
@@ -1,8 +1,6 @@
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"
@@ -24,4 +22,4 @@ 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"
plot "exp1-data-unadjusted.txt" title "Unadjusted" with points pt '*', "exp1-data-adjusted.txt" title "Adjusted" with points pt 'x'