about High pass and low pass filter
이전 댓글 표시
how to design high pass IIR filter and low pass Fir signal using window method(using conv) to remove one of signal from sine wave of 50hz and 10hz
답변 (1개)
Youssef Khmou
2014년 12월 25일
The syntax for designing low pass filters is :
b = fir1(n,Wn,'ftype',window);
n is the number of coefficients, Wn is the cut-off frequency ( 0<=Wn<=1), 'ftype', 'ftype' accepts parameters 'high','stop','DC-1' and 'DC-0'. If the 'windows' parameter is not specified , then Hamming windows is the default option.
카테고리
도움말 센터 및 File Exchange에서 Digital and Analog Filters에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!