How do I reverse the y-axis in image?
265 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Orion
2014 年 11 月 25 日
編集済み: MathWorks Support Team
2018 年 11 月 27 日
You can change the direction of increasing values along the y-axis by setting the YDir property of the Axes object.
If you want the values to increase from bottom to top (2-D view), then set the value to 'normal'. Alternatively, if you want the values to decrease from bottom to top, then set the value to 'reverse'. For example:
ax = gca;
ax.YDir = 'normal'
2 件のコメント
その他の回答 (4 件)
Shane
2014 年 11 月 25 日
Alternatively, you can flip the array. Either fliplr or flipud Flip Left-Right, or Up-Down, depending on how your data is.
plot(X, fliplr(Y))
0 件のコメント
Jamel
2022 年 6 月 7 日
How do I reverse the "Interference from Satellite Constellation Communication Link" code, where the direction starts from the opposite way.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Graphics Object Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!