Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • $\begingroup$ Thank you very much, Bill. It does, and rather well. Do you think it is possible to do it with RecrrenceTable? I tried, but the result is not correct. $\endgroup$ Commented Apr 16, 2024 at 16:39
  • $\begingroup$ Yes you are right. There is a mistake in the recurrence equation. The good one is the following one : y(n)=(a0/b0)*x(n)+(a1/b0)*x(n-1)+(a2/b0)*x(n-2)-(b1/b0)*y(n-1)-(b2/b0)*y(n-2) $\endgroup$ Commented Apr 17, 2024 at 7:20