How to fix this weird plot behaviour?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Adrian Brand
el 3 de Abr. de 2020
Respondida: Adrian Brand
el 3 de Abr. de 2020
Hello. I have problem with dissapearin function using plot. It looks like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/281651/image.png)
However if I change position of the view it disapears:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/281652/image.png)
It is the case of only that function. Does somebody know, why?
figure(1)
hold on
ylim([678, 685])
plot(vysledkyM, 'r');
plot(vysledkyU, 'b');
plot(vysledkyS, 'g');
legend('death penalty','stupnova', 'umerna')
hold off
EDIT: Clarification of the question
0 comentarios
Respuesta aceptada
Más respuestas (1)
David Goodmanson
el 3 de Abr. de 2020
Editada: David Goodmanson
el 3 de Abr. de 2020
Hi Adrian,
figure(1)
plot(vysledkyM, 'r');
ylim([678, 685])
hold on
plot(vysledkyU, 'b');
plot(vysledkyS, 'g');
legend('death penalty','stupnova', 'umerna')
hold off
Matlab only buys into 'hold on' after the first trace is plotted. (Same with ylim, evidentty).
Ver también
Categorías
Más información sobre Graphics Performance 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!