libdspl-2.0/bin/gnuplot/iir_bstop.plt

21 wiersze
461 B
Gnuplot

unset key
set grid
set xlabel " normalized frequency"
set terminal pngcairo size 920, 260 enhanced font 'Verdana,8'
set output 'img/iir_bstop.png'
set multiplot layout 1,3 rowsfirst
set ylabel "Magnitude, dB"
set yrange [-100:5]
plot 'dat/iir_bstop_mag.txt' with lines
set ylabel "Phase response, rad"
unset yrange
plot 'dat/iir_bstop_phi.txt' with lines
set ylabel "Groupdelay, samples"
unset yrange
plot 'dat/iir_bstop_tau.txt' with lines
unset multiplot