filtering output data from my integrator solution
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Jan
el 14 de Feb. de 2014
Do you mean this:
[t, y] = ode45(...)
last_t = t(end);
last_y = y(end, :);
?
1 comentario
Ver también
Categorías
Más información sobre Digital Filter Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!