- freqz(_) with no output arguments plots the frequency response of the filter.
How to set freqz for not showing
조회 수: 3 (최근 30일)
이전 댓글 표시
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
채택된 답변
Star Strider
2017년 2월 3일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!