注册 登录
编程论坛 Matlab

【求助】 一个根式表达式的laplace反变换结果

baby416 发布于 2006-12-06 12:43, 1082 次点击
请问(sqrt(s^2+t^2))*t/s的laplace逆变换结果是什么,当s变为x,t变为y

1 回复
#2
wingser2006-12-07 17:12
syms s t
f = sqrt(s^2+t^2).*t./s;
ilaplace(f,s,t)
1