finished report a-1

This commit is contained in:
2026-04-28 01:34:47 +09:00
parent 42e30c4949
commit 8293895d53
22 changed files with 1438 additions and 318 deletions
+14 -3
View File
@@ -17,9 +17,20 @@ set key left top
set log x
set xrange [1e2:1.5e5]
set xlabel "Frequency (Hz)"
set ylabel "Amplitude (dB)"
set multiplot layout 2,1 rowsfirst
set xlabel
set ylabel "Gain (dB)"
set format x ""
plot "exp1-data-unadjusted.txt" u 1:2 title "Unadjusted" with points pt '*', "exp1-data-adjusted.txt" u 1:2 title "Adjusted" with points pt 'x'
unset key
set xtics add ("1k" 1e3, "3k" 3e3, "10k" 1e4, "30k" 3e4, "100k" 1e5)
set xlabel "Frequency (Hz)"
set ylabel "Phase (deg)"
plot "exp1-data-unadjusted.txt" title "Unadjusted" with points pt '*', "exp1-data-adjusted.txt" title "Adjusted" with points pt 'x'
plot "exp1-data-unadjusted.txt" u 1:3 title "Unadjusted" with points pt '*', "exp1-data-adjusted.txt" u 1:3 title "Adjusted" with points pt 'x'
unset multiplot