Design 2nd order band Pass filter on MATLAB using any windowing technique , then find magnitude and phase response.

18 次查看(过去 30 天)
Design a second order Band pass filter on MATLAB having Band width= 5k Cut off frequencies Wc1= 5k and Wc2= 10k .Use any windowing technique(FDA toolbox is not required) to design this on MATLAB Then we have to find, frequency response (magnitude, and phase)
  3 个评论
Sam Chak
Sam Chak 2022-6-29
编辑:Sam Chak 2022-6-29
Oh, I see now, @Razzaq, you requested for help with complete sincerity, but at the same time your title in a professional setting sounds like instructing anyone to do your bidding. Would suggest you to edit the Title and the "Description of the Task", preferably in the Question format.
Suggestion: How to design a second-order Bandpass Filter with this formula in MATLAB?
You have to perform due diligence if you wish to "attract" meaningful answers from the Experts in Electrical & Electronics Engineering.
Coming back to your problem, not having enough knowledge is okay for the time being. Why not start searching your textbook in University Library, or a reference book in your Design Company, if you are tasked to design a Bandpass Filter?
I don't have a textbook on bandpass filter. After finding the mathematical formula, please post the formula here.

请先登录,再进行评论。

回答(1 个)

Sam Chak
Sam Chak 2022-6-29
Maybe it looks like this:
Flo = 5e3; % low cutoff, (rad/s)
Fhi = 10e3; % high cutoff
R1 = sqrt(1/(Flo));
C1 = R1; % assumed, can be different
R2 = sqrt(1/(Fhi));
C2 = R2; % assumed, can be different
tau1 = R1*C1;
tau2 = R2*C2;
tau3 = R2*C1;
% transfer function of 2nd-order Bandpass Filter
s = tf('s');
Gbp = - (tau3*s)/((tau1*s + 1)*(tau2*s + 1))
Gbp = -0.0001414 s ------------------------ 2e-08 s^2 + 0.0003 s + 1 Continuous-time transfer function.
w = linspace(1e3, 5e4, 1e5);
bode(Gbp, w)

类别

Help CenterFile Exchange 中查找有关 Filter Analysis 的更多信息

产品


版本

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by