FIR Filtering using firpm function.
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi I want to design a low pass filter which passes until 0.05hz and blocks frequencies over 0.1hz.
And also it is required to design it as a differentiator filter.
The frequency response of the filter is :
|H(w) - jw| < 0.01, 0 <= w <= 2*pi*0.05
|H(w)| < 0.01, 2*pi*0.1 <= w <= 2*pi*0.5
And also low pass diffrentiator deviates less than 0.01.
I wrote the code below but it seems it is not correct.
Can someone help me please.
h=firpm(61,[0.05*pi*2 0.1*pi*2],[0.01 0],"differentiator");
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Filter Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!