标签: matlab matlab-guide
当我从相机获取快照时,y轴存在问题,y轴从450开始到50 ......我想从小数字开始到大数字而不是反之亦然....任何人帮我解决这个问题....谢谢
答案 0 :(得分:1)
您可以使用轴属性更改轴方向:
set(gca,'YDir','reverse') % starts at the top of the figure set(gca,'YDir','normal') %starts at the bottom of the figure