フィルターのクリア

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

4 ビュー (過去 30 日間)
Daire McGorman
Daire McGorman 2020 年 11 月 9 日
コメント済み: Ameer Hamza 2020 年 11 月 10 日
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])
  2 件のコメント
Daire McGorman
Daire McGorman 2020 年 11 月 9 日
this needs to be done using a ramp input in simulink
Ameer Hamza
Ameer Hamza 2020 年 11 月 10 日
Ramp already have a transfer function of 1/s^2. You can just connect with a transfer function block and check the output using scope block.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAssembly についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by