filtering output data from my integrator solution
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Jan
am 14 Feb. 2014
Do you mean this:
[t, y] = ode45(...)
last_t = t(end);
last_y = y(end, :);
?
1 Kommentar
Siehe auch
Kategorien
Mehr zu Digital Filter Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!