How to plot result of inverse laplace transformation ?
10 ビュー (過去 30 日間)
古いコメントを表示
Hi,
how can I plot result of inverse Laplace transformation?
Example:
b=(s^2-2*s+4);
c=ilaplace(b)
t=0:10;
Than I get:
c = 4*dirac(t) - 2*dirac(t, 1) + dirac(t, 2)
but how can I plot result of ilaplace for t=0:10?
I know about
ezplot(matlabFunction(h), [1,1000])
but it doesn't work.
Thank you for help
No ideas?
3 件のコメント
nl2605
2013 年 7 月 19 日
Hey..
When you say you want to plot the inverse laplace transform don't you actually mean the impulse response of the system? Because then you might as well plot the impulse response using impulseplot function. But then you also need to define the system. Just asking because I am working on a similar topic.
回答 (2 件)
Vipin Sharma
2014 年 9 月 3 日
Inverse laplace transform plot of a transfer function, F, is equal to impulse response of the transfer function, F. You could simply do, impulseplot(F). Note that F is 'tf' type and 'sym' type.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!