如何同matlab实现拉普拉斯变换

如题所述

%Laplace变换的Laplace和ilaplace
%求e^(-a*t)*sin(b*t)的Laplace变换
syms t s a b 
f1=exp(-a*t)*sin(b*t);
F1=laplace(f1,t,s)%求a*(s+1)^(-2)的Laplace反变换
syms t s a
F=a*(s+1)^(-2)
f=ilaplace(F,s,t)

试试这个

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答