How can i write this code and plot it on matlab?

5 次查看(过去 30 天)
I have a TF of H(s) and i dont know how to write code to plot it on matlab . We already solved it and i wanna use matlab to see if result are true. Can you help me please?
R= 10 k ohm.
L = 14.95 mH
C= 0.018013 pF
H(s) = R / ( R + Ls + (1 / Cs) ) = (R/L)s / ( s^2 + (R/L)s + 1/(LC) )

采纳的回答

Star Strider
Star Strider 2021-12-30
I would be tempted to use the Control System Toolbox —
R= 10; % k ohm.
L = 14.95; % mH
C= 0.018013; % pF
s = tf('s');
H(1) = R / ( R + L*s + (1 / C*s) )
H = 10 ------------ 70.47 s + 10 Continuous-time transfer function.
H(2) = (R/L)*s / ( s^2 + (R/L)*s + 1/(L*C) )
H = From input 1 to output: 10 ------------ 70.47 s + 10 From input 2 to output: 0.6689 s ---------------------- s^2 + 0.6689 s + 3.713 Continuous-time transfer function.
figure
step(H)
I have no idea what is writtien on the whiteboard. Plot whatever it requires.
.
  4 个评论
Star Strider
Star Strider 2021-12-30
My pleasure!
I mistyped some of the unit conversions. The code is now correct.
If my Answer helped you solve your problem, please Accept it!
.

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by