79833055

Date: 2025-11-29 05:12:03
Score: 0.5
Natty:
Report link

It seems that ARM CMSIS uses this equation:

y[n] = b0*x[n] + b1*x[n-1] + b2*x[n-2] - a1*y[n-1] - a2*y[n-2]

So it expects the a coefficients already negated. Without this, you get massive positive feedback, hence the error.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: monkey