0

我有一个这样的函数:U = coth(s/100)/(s^3 + a*s + b)ilaplce(U,s,t)用来找到逆拉普拉斯变换,但 matlab 不能给我答案。

>> syms t x s
>> U = coth(s/100)/(s^3 + s^2 + 1);
>> u = ilaplace(U,s,t)
u =
ilaplace(coth(s/100)/(s^3 + s^2 + 1), s, t)

我尝试对 coth() 的另一个函数进行逆运算,但我收到了相同的结果。

>> K = coth(s);
>> k = ilaplace(K,s,t)
k =
ilaplace(coth(s), s, t)
>> 

我尝试用枫树做,但仍然没有答案:

> with(inttrans);
> invlaplace(coth(s), s, t);
                          invlaplace(coth(s), s, t)

所以我该怎么做 ?谢谢你的回答!

4

0 回答 0