How to plot second order ode
Ältere Kommentare anzeigen
syms m c dy k y t y(t) dy(t) y0 dy0
sol=dsolve(m*diff(dy) +c*dy + k*y == 3*sin(2*t),diff(y) == dy,y(0)==y0,dy(0)==dy0);
ezplot(sol.y)
Antworten (1)
Gautam
am 11 Feb. 2025
0 Stimmen
Hello John,
You can try using "fplot" function to plot the numeric function over a specified range
Kategorien
Mehr zu Plot Settings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!