how to set a range of a scatterplot in matlab app designer?
Afficher commentaires plus anciens
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
Réponses (1)
Voss
le 5 Fév 2024
scatter(app.UIAxes, X, Y, 'filled')
app.UIAxes.YLim = [0 500];
2 commentaires
Voss
le 5 Fév 2024
or
scatter(app.UIAxes, X, Y, 'filled')
ylim(app.UIAxes,[0 500]);
Muazma Ali
le 6 Fév 2024
Catégories
En savoir plus sur Scatter Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!