Help associating ode events (if they occur?) to plotted symbols and legends
1 view (last 30 days)
Show older comments
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 Comments
Walter Roberson
on 22 Dec 2022
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?
Answers (0)
See Also
Categories
Find more on Legend in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!