filtering output data from my integrator solution
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
So i have a system of differntial equations that i am solving. I want to feed the output solutions into another equation but i only need the final output values from the end of my time step to feed into my next equation. how can i filter out all the other points?
0 commentaires
Réponses (1)
Jan
le 14 Fév 2014
Do you mean this:
[t, y] = ode45(...)
last_t = t(end);
last_y = y(end, :);
?
1 commentaire
Voir également
Catégories
En savoir plus sur Digital Filter Analysis 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!