imagesc funtion axes configuration
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
how can I change the axes of the graph to have x = 50 increments and y = 50 increments? (e.g. x strats from zero and ends up at 50)
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 7 月 3 日
編集済み: Walter Roberson
2020 年 7 月 3 日
xlim([0 50]);
xticks(0:5:50); %ticks at 0, 5, 10, 15, and so on
Warning: none of your image x data is as low as 50, so although this would do what you have asked for here, the result would be that the image will not be visible at all.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Graphics Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!