how to analyze frequency response ?
이전 댓글 표시
how to analyze frequency response of a audio file using freqz command ? can any one help ,i am a beginner to matlab
채택된 답변
추가 답변 (1개)
Carlos
2013년 3월 6일
Hi Gokul, freqz is used to find the frecuency response, once you have designed your b and a vectors.
[h,w]=freqz(b,a,n)
returns the filter's frecuency response. As far as I know freqz is used when you want to represent your filter's frecuency response, by doing
plot(w/(2*pi),abs(H)).
To find the frecuency response use fft.
카테고리
도움말 센터 및 File Exchange에서 Spectral Measurements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!