Help associating ode events (if they occur?) to plotted symbols and legends
1 回表示 (過去 30 日間)
古いコメントを表示
I have identified 4 ode events. The integration stop event which will occur, but the other 3 might not. The events function order list, intended symbol on a graph and accompanying legend are:
n - symbol - legend
1 - 'kx' - 'end' (integration stop)
2 - 'k.' - 'vertex'
3 - 'kv' - 'threshold decreasing'
4 - 'k^' - 'threshold increasing'
If possible, I would basically like to plot something like:
hold on
plot(t,y))
plot(te1,ye1),'symbol1')
plot(te2,ye2),'symbol2') - might not occur
plot(te3,ye3),'symbol3') - might not occur
plot(te4,ye4),'symbol4') - might not occur
hold off
legend(anything,legend1,legend2,legend3,legend4) - later legends might not occur
So far, chronological events in the 'ie' matrix are [3;2;4;1] or [2;3;4;1], but this might change!
Try as i may, i cannot correctly accociate events with plotted symbols or legends, let alone instances where they might not occur!
Any help or advice on how i might achieve this would be greatly appreciated.
3 件のコメント
Walter Roberson
2022 年 12 月 22 日
What difficulty are you encountering? It would probably be easier if you could post code for us to test.
Question: if an event does not occur then should it still appear in the legend?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!