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
回答(1 个)
Voss
2024-2-5
scatter(app.UIAxes, X, Y, 'filled')
app.UIAxes.YLim = [0 500];
2 个评论
Voss
2024-2-5
or
scatter(app.UIAxes, X, Y, 'filled')
ylim(app.UIAxes,[0 500]);
Muazma Ali
2024-2-6
类别
在 帮助中心 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!