Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Implement filter that cannot be normed to a(1) = 1

1 Ansicht (letzte 30 Tage)
Joschua Kraus
Joschua Kraus am 14 Mai 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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:
But how is the following filter being implemented?
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?

Antworten (1)

Honglei Chen
Honglei Chen am 14 Mai 2018
You will pad 4 zeros in front of numerator.
HTH
  2 Kommentare
Joschua Kraus
Joschua Kraus am 15 Mai 2018
Unfortunately I do not understand your answer
Joschua Kraus
Joschua Kraus am 15 Mai 2018
Now I got your point, please see the edit to my question in bold letters!

Diese Frage ist geschlossen.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by