Good Day Sir/Ma'am. May i ask what is the meaning of ode45 here and @dfunc? --------> [t,x] = ode45(@dfunc, tspan, x0);
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Warda Panondi
le 21 Mar 2018
Réponse apportée : Mark Alison
le 23 Mar 2018
Thank you very. Hoping for response.
1 commentaire
Réponse acceptée
James Tursa
le 21 Mar 2018
Modifié(e) : James Tursa
le 21 Mar 2018
ode45 is a numerical integration routine
doc ode45
@dfunc is a function handle that points to a function called dfunc. This function takes two inputs, time and current state vector, and outputs the derivative of the state vector at that particular time.
doc function_handle
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!