how to set the negative values on a diagram to zero
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hello all,
could you kindly advise me how to set a limit on a diagram.
As you may see on the diagram that i have plotted, the orange graph tends to show negative value.
I wish to set a limit on the y-axis to zero, so that there are no more negative value appearing on the diagram.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/311753/image.png)
0 comentarios
Respuestas (1)
Star Strider
el 7 de Jun. de 2020
One approach:
figure
plot( ... )
ylim([0, max(ylim)])
if you only want to limit the y-axis range.
0 comentarios
Ver también
Categorías
Más información sobre Annotations 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!