access to element of variable in ode
Afficher commentaires plus anciens
function V=wffun(t,i)
[t,i] = ode15s(@wffun,tspan,i0)
ode return Matrix with length of k. how can i access element of t and i while ode is runing? in function wffun i use t(k-1) and t(k)
Réponses (1)
Steven Lord
le 17 Sep 2018
0 votes
If the differential equation you're solving includes a reference to the value of a component of the solution at an earlier time, you don't have an ordinary differential equation. Use a delay differential equation solver instead.
1 commentaire
siroos jalilyan
le 17 Sep 2018
Catégories
En savoir plus sur Ordinary Differential Equations 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!