Help associating ode events (if they occur?) to plotted symbols and legends
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 22 de Dic. de 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?
Respuestas (0)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!