Calculate Coefficients of 2nd Order Butterworth Low Pass Filter
问题 With the, Sampling Freq: 10kHz Cut-off Freq: 1kHz How do I actually calculate the coefficients for the difference equation below? I know the difference equation will be in this form, but do not know how to actually work out and come up with the numbers for the coefficients b0, b1, b2, a1, a2 y(n) = b0.x(n) + b1.x(n-1) + b2.x(n-2) + a1.y(n-1) + a2.y(n-2) I will eventually be implementing this LPF in C++ but I need to know how to actually calculate the coefficients first before I can get