how to set a range of a scatterplot in matlab app designer?
Show older comments
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
Answers (1)
Voss
on 5 Feb 2024
scatter(app.UIAxes, X, Y, 'filled')
app.UIAxes.YLim = [0 500];
2 Comments
Voss
on 5 Feb 2024
or
scatter(app.UIAxes, X, Y, 'filled')
ylim(app.UIAxes,[0 500]);
Muazma Ali
on 6 Feb 2024
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!