how can I use a Ramp input to simulate an input of 1/(s^2) any help is appriciated Simulink

7 次查看(过去 30 天)
how can I use a Ramp input to simulate an input of 1/(s^2) any help is appriciated

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-11-9
See lsim() function: https://www.mathworks.com/help/ident/ref/lti.lsim.html from Control System toolbox.
Or ilasplace(): https://www.mathworks.com/help/symbolic/ilaplace.html from The Symbolic toolbox.
For example
syms s t
trans_fun = 1/(s+1);
u = 1/s^2;
y = ilaplace(trans_fun*u);
fplot(y, [0 10])

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by