Can anyone help me answer this question with matlab?

2 次查看(过去 30 天)
G(s)=K(s^2+6s+25)/(s(s+1)〖(s+5)(s+7)〗^2 )
Determine 𝑐(𝑡) by using inverse Laplace for 𝐾=1 and 𝑟(𝑡)=𝑢(𝑡)

采纳的回答

Ameer Hamza
Ameer Hamza 2020-11-7
编辑:Ameer Hamza 2020-11-7
You need the symbolic toolbox for this
syms s t
K = 1;
U(s) = 1/s;
G(s) = K*(s^2+6*s+25)/(s*(s+1)*((s+5)*(s+7))^2);
C(s) = G*U;
c(t) = ilaplace(C)
Following is the output from symbolic toolbox

更多回答(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