w0 = 2*pi; % [rad/s]
n = 3;
H = ((s/w0)/(1+ s/w0))^n;
Figure 6: Combine Multiple First Order High Pass Filter (png, pdf.
3 Band Pass
4 Notch
5 Chebyshev
5.1 Chebyshev Type I
n = 4; % Order of the filter
Rp = 3; % Maximum peak-to-peak ripple [dB]
Wp = 2*pi; % passband-edge frequency [rad/s][A,B,C,D] = cheby1(n, Rp, Wp, 'high', 's');
H = ss(A, B, C, D);