如何反转coth()函数的laplace变换

时间:2013-06-08 02:27:57

标签: matlab maple

我有这样的函数:U = coth(s/100)/(s^3 + a*s + b)我使用ilaplce(U,s,t)来查找invers laplace变换,但是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)

那我该怎么办?谢谢你的回答!

0 个答案:

没有答案