filtering output data from my integrator solution
古いコメントを表示
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?
回答 (1 件)
Jan
2014 年 2 月 14 日
Do you mean this:
[t, y] = ode45(...)
last_t = t(end);
last_y = y(end, :);
?
1 件のコメント
カテゴリ
ヘルプ センター および File Exchange で Multicore Processor Targets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!