How to plot Homogeneous solution and Particular integral seperately of a second order differntial equation using ode45

4 ビュー (過去 30 日間)
Equation
Eq = y'' + 4*y-15.6(cos(20t)-cosh(20t)-1.5(sin(20t)-sinh(20t)))==0
initial conditions y(0) = 0;y'(0) =0

回答 (1 件)

Alan Stevens
Alan Stevens 2022 年 4 月 16 日
ode45 just solves first order equations, so turn your second order equation into two first order ones, like so:
y' = v
v' = -4*y+15.6(cos(20t)-cosh(20t)-1.5(sin(20t)-sinh(20t)))
Look up help on ode45 to see how it solves these.

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by