我试图以我想要的方式绘制一些数据时遇到了一些打嗝 - 任何建议都会非常感激。
left
和right
是其他地方获得的数十万的向量。
下面的代码绘制了left
两次 - 第二个绘图位于第一个顶部,大致朝向一个角落。
ax1 = axes;
plot(ax1, left, 'b');
set(ax1, 'xlim', [7.075*10^4 7.5*10^4]);
set(ax1, 'ylim', [-0.02 0.02]);
ax2 = axes('Position', get(ax1,'Position'), 'XAxisLocation', 'top', 'YAxisLocation', 'right', 'Color', 'none', 'XColor', 'k', 'YColor', 'k', 'NextPlot', 'add');
plot(ax2, left, 'b');
set(ax2, 'Units', 'normalized', 'Position', [0.6 0.60 0.25 0.25]);
我想要做的是为right
提供相同的东西,然后将每对图显示为一个子图,并将两个子图并排显示。我已经尝试调整我上面的方式来使用子图,但我显然做错了,因为我继续查看每个子图的内容并最终得到两个空的子图。
另外,是否可以防止较小的插图使用透明背景?
答案 0 :(得分:3)
考虑以下示例:
%# sample data
x = 1:100;
left = randn(100,1);
right = cumsum(rand(100,1)-0.5);
%# build axes positions
hBig = [subplot(121) subplot(122)]; %# create subplots
posBig = get(hBig, 'Position'); %# record their positions
delete(hBig) %# delete them
posSmall{1} = [0.275 0.63 0.16 0.24];
posSmall{2} = [0.717 0.63 0.16 0.24];
%# create axes (big/small)
hAxB(1) = axes('Position',posBig{1});
hAxB(2) = axes('Position',posBig{2});
hAxS(1) = axes('Position',posSmall{1});
hAxS(2) = axes('Position',posSmall{2});
%# plot
plot(hAxB(1), x, left, 'b');
plot(hAxB(2), x, right, 'b');
plot(hAxS(1), x, left, 'r');
plot(hAxS(2), x, right, 'r');
%# set axes properties
set(hAxB, 'XLim',[1 100], 'YLim',[-10 10]);
set(hAxS , 'Color','none', 'XAxisLocation','top', 'YAxisLocation','right');
如果您希望较小轴的背景颜色不透明,只需将其颜色设置为白色:
set(hAxS , 'Color','w')
答案 1 :(得分:1)
要更改背景,请使用(红色背景)
set(ax2,'color',[1 0 0])
关于子图,如果您发布不起作用的代码,它将有所帮助。