LaPlace transform, magnitude, poles.

8 ビュー (過去 30 日間)
Kyle Langford
Kyle Langford 2022 年 4 月 16 日
コメント済み: Star Strider 2022 年 4 月 16 日
I need some hep with this last step.
I am following a guide to try and info out of a laplace transform.
This is the code I have, and my attempt to get the highlighted solution.
This has everything I need I am just not sure how to get the final output. For example I don't know how MATLAB will always order the values. Like if -0.25 should be assigned to s or s^2.

採用された回答

Star Strider
Star Strider 2022 年 4 月 16 日
I don’t recognise ‘poly2str’ and the only MATLAB function I can find that would be similar is poly2sym.
Taking a shortcut, try this —
syms F(s) s t
F(s) = (s^2+1) / (s^2*(s+2))
F(s) = 
F = partfrac(F)
F(s) = 
f(t) = ilaplace(F)
f(t) = 
f = vpa(f, 3)
f(t) = 
The partfrac function was introduced in R2015a.
.
  2 件のコメント
Kyle Langford
Kyle Langford 2022 年 4 月 16 日
I like this a lot more than what I was doing. Thank you so much!
Star Strider
Star Strider 2022 年 4 月 16 日
My pleasure!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by