Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Implement filter that cannot be normed to a(1) = 1
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am aware of the following method of implementing a filter:
numerator = [2 1 1] ;
denominator = [1 2 2 2];
y = filter(signal, numerator, denominator);
The filter transfer function would look like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/190545/image.png)
But how is the following filter being implemented?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/190546/image.png)
ATTENTION: I DID NOT MEAN TO WRITE Z^-4 BUT Z^4 I'M VERY SORRY FOR THE CONFUSION
My take: -> The first part is essentially a delay so multiply the signal with 2 and delay it 4 counts (how do I do that?) then apply the filter as said to the signal. Is my line of thinking correct? How would you apply the delay?
댓글 수: 0
답변 (1개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!