matlab定积分求解问题syms w t s;d=int(sin(w*t)*exp(-s*t),t

发布时间:2021-02-26 01:13:24

matlab定积分求解问题syms w t s;d=int(sin(w*t)*exp(-s*t),t,0,inf)limit(-(sin(w*t)*s*exp(-s*t)+cos(w*t)*w*exp(-s*t)-w)/(s^2+w^2),t = Inf)我这个是拉普拉斯sin(wt)的变换,但是为什么没有得到w/(s^2+w^2)?

网友回答

拉普拉斯变换专门有函数
>> syms w t s
>> f=sin(w*t)*exp(-s*t);
>> laplace(f)
ans =w/(4*s^2 + w^2)
以上问题属网友观点,不代表本站立场,仅供参考!