Error input must be floats, namely single or double.
Show older comments
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')
Accepted Answer
More Answers (0)
Categories
Find more on Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!