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!