MATLAB: solving a 2nd order ODE which has a parameter which evolves in time
Afficher commentaires plus anciens
Hi, I'm trying to solve the equation: y'' + k(t)y = 0 where k(t) is an array of values and y(0) = 1/2 and y'(0) = 1 in the range t = 0 to 20.
I understand it is possible to solve this as 2 coupled first order differential equations using ode45 as follows when k is constant:
k = 2
syms y(t)
[System] = odeToVectorField(diff(y, 2) == -(k).*y);
M = matlabFunction(System,'vars', {'t','Y'});
sol = ode45(M,[0 20],[1/2 1]);
fplot(@(x)deval(sol,x,1), [0, 20])
Please will you help me introduce the dependance on t of k(t), thanks!
1 commentaire
darova
le 24 Fév 2020
- Please will you help me introduce the dependance on t of k(t), thanks!
Can you be more specific? What is it? Where is dependance?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!