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