反转颜色条而不反转文本

时间:2014-12-15 22:13:11

标签: matlab plot matlab-figure colorbar

我想要反转colorbar的方向,根据我的搜索,将xdir属性设置为reverse应该可以实现这一点。事实证明它确实如此,然后,在MATLAB R2014a中翻转所有文本以及la Leonardo da Vinci!我怎么能阻止这种疯狂呢?

示例:

figure
subplot 311
plot(1:10)
set(gca,'xdir','reverse')
pause % ok up until here

subplot 312
surf(peaks)
colorbar('NorthOutside','xdir','reverse');

subplot 313
set(gca,'xdir','normal')
plot(1:10)

值得庆幸的是,在导出或复制并粘贴图形时,文本将恢复正常,但不是在保存为MATLAB图形时。这是一个屏幕截图(请注意底部图的方向恢复正常,但不是文本。

Matlab fig

0 个答案:

没有答案