how to set a range of a scatterplot in matlab app designer?

Hi! :)
I have the app visualiseringsapp , the attached one and I am wondering how I can get the range of y axis to go from 0 to 500 .
Thanks

Respuestas (1)

scatter(app.UIAxes, X, Y, 'filled')
app.UIAxes.YLim = [0 500];

2 comentarios

or
scatter(app.UIAxes, X, Y, 'filled')
ylim(app.UIAxes,[0 500]);
@Voss but I also want the axis to increase with 50 meaning it goes from 0 to 50 then comes 100 then 150 and so on upto 500,
thanks

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Preguntada:

el 5 de Feb. de 2024

Comentada:

el 6 de Feb. de 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by