I want to design a digital butterworth lowpass filter of nth order, with only freedom of choice to user being order of the filter and the cut off frequency, i already have a 1st order low pass.
Code:
T = 1/(2*pi*this.fc);
this.A = -1/T;
this.B = 1/T;
this.C =...