- freqz(_) with no output arguments plots the frequency response of the filter.
How to set freqz for not showing
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
andreas ioannou
am 3 Feb. 2017
Kommentiert: Star Strider
am 4 Feb. 2017
Hi everyone I am doing a sound processing and i have a lot plots, i am using set(0,'DefaultFigureVisible','oFF') for not showing the figures and after i saving all the figures. The only figure for showing is the freqz
here is my code
[b,a] = butter(5,fc/(Fs/2));
h(1) = figure;
freqz(b,a);
Thank you
0 Kommentare
Akzeptierte Antwort
Star Strider
am 3 Feb. 2017
Ask freqz for outputs and it will not plot by default.
From the documentation:
Example:
[h,w] = freqz(b,a,n);
See the documentation for freqz for details.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Multirate Signal Processing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!