Error input must be floats, namely single or double.

tspan=[0:0.25:5];
syms x(t) m f_0
dx=diff(x)
x0=0;
ode=m*dx+k*x==f_0*sin(t)
[t,x]=ode45(@(t,x) ode,tspan,x0)
plot(t,x,'m')

 採用された回答

Walter Roberson
Walter Roberson 2018 年 7 月 8 日

0 投票

Look at the documentation odeFunction for information on how to convert symbolic ode to numeric.

その他の回答 (0 件)

製品

リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by