フィルターのクリア

inverce laplace and ploting data

3 ビュー (過去 30 日間)
ali akyuz
ali akyuz 2020 年 5 月 16 日
コメント済み: Star Strider 2020 年 6 月 1 日
I need to verify this figure by obtaining poles and c(t) from G(s) and plotting unit step response for each case. But I couldn't go to the inverse laplace. where am i doing wrong ?
s = zpk('s')
Gs=(9)/(s^2+9*s+9);
pole(Gs)
zero(Gs)
Ct=ilaplace(Gs)
figure
plot(Ct)
  2 件のコメント
Rena Berman
Rena Berman 2020 年 6 月 1 日
(Answers Dev) Restored edit
Star Strider
Star Strider 2020 年 6 月 1 日
Thank you.

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

回答 (1 件)

Star Strider
Star Strider 2020 年 5 月 16 日
I believe that what you actually want is:
s = zpk('s')
Gs=(9)/(s^2+9*s+9);
pole(Gs)
zero(Gs)
% Ct=ilaplace(Gs)
figure
step(Gs)
since under other circumstances (specifically using the Symbolic Math Toolbox), plotting ilaplace of a symbolic transfer function (using fplot) would return the impulse response. To plot a symbolic step response, you would divide ‘Gs’ by ‘s’, then use fplot.

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by