I’m trying to understand how to transform a filter, in this case a Notch(stopband) filter, to Python but I don’t know how.
x(n)=-2*x(n)/(-0.9*x(n) -0.9*x(n-1))
Can anyone help me please?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re using numpy arrays, this should work:
this changes your array in place, but you could just as easily assign it to a new array.
Note that your algorithm isn’t really well defined for the 0th element, so my translation leaves
x[0]unchanged.EDIT
To change an iterable to a numpy array: