Matlab - 子图中不同的轴大小

时间:2012-10-17 18:42:33

标签: matlab plot axes subplot

我有两张不同比例的图表,我想使用子图。如何设置子图(211)的轴尺寸并为子图(212)设置不同的轴比例???

1 个答案:

答案 0 :(得分:1)

subplot返回一个轴对象:

ha = subplot(211);
plot(1:10);
set(ha, 'xscale', 'log');
hb = subplot(212);
plot(1:10);
set(hb, 'xscale', 'linear');

将其存储在变量中并根据需要设置比例。