When I tried to Laplace transform a differential equation, errors appeared, HELP

1 次查看(过去 30 天)
syms x t s X F
F=laplace('diff(x(t),t,t)+7*diff(x(t),t)+10*x(t)=20',s)
How this transformation could be done otherwise?

采纳的回答

Ameer Hamza
Ameer Hamza 2020-6-13
编辑:Ameer Hamza 2020-6-13
According to documentation, laplace() accepts symbolic inputs. You should input the symbolic equation
syms x(t) s X F
F = laplace(diff(x(t),t,t)+7*diff(x(t),t)+10*x(t)==20, s)
Also, define syms x(t) as a symbolic function. Defining them seperately will give an error.
  3 个评论
Ameer Hamza
Ameer Hamza 2020-6-13
I am glad to be of help!
My guess is that you have followed a tutorial for an older version. In the past, char arrays were supported for symbolic toolbox functions, now that support is being removed.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Assumptions 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by