libdspl-2.0/test/bin/gnuplot/butter_ap_test.plt

39 wiersze
870 B
Gnuplot
Czysty Zwykły widok Historia

2018-04-02 20:48:53 +00:00
set logscale x
unset key
set grid
set xlabel "frequency, rad/s"
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
set terminal wxt size 920, 260 enhanced font 'Verdana,8'
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
set multiplot layout 1,3 rowsfirst
set ylabel "Magnitude, dB"
2018-04-03 20:15:14 +00:00
set yrange [-100:5]
2018-04-02 20:48:53 +00:00
plot 'dat/butter_ap_test_mag.txt' with lines
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
set ylabel "Phase response, rad"
2018-04-07 12:17:30 +00:00
unset yrange
plot 'dat/butter_ap_test_phi.txt' with lines
2018-10-05 13:37:20 +00:00
set ylabel "Groupdelay, sec"
unset yrange
plot 'dat/butter_ap_test_tau.txt' with lines
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
unset multiplot
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
set terminal pngcairo size 920, 260 enhanced font 'Verdana,8'
set output 'img/butter_ap_test.png'
set multiplot layout 1,3 rowsfirst
set ylabel "Magnitude, dB"
set yrange [-100:5]
plot 'dat/butter_ap_test_mag.txt' with lines
set ylabel "Phase response, rad"
unset yrange
plot 'dat/butter_ap_test_phi.txt' with lines
2018-04-07 12:17:30 +00:00
2018-10-05 13:37:20 +00:00
set ylabel "Groupdelay, sec"
2018-04-07 12:17:30 +00:00
unset yrange
plot 'dat/butter_ap_test_tau.txt' with lines
2018-10-05 13:37:20 +00:00
unset multiplot