在Matlab中绘制外轴

时间:2011-08-06 02:47:57

标签: matlab graphics figure

如何用MATLAB绘制轴外的东西?我想画一些类似于这个数字的东西;

Plot with bar outside axis

谢谢。

3 个答案:

答案 0 :(得分:6)

通过使用两个轴,这是一个可能的技巧:

%# plot data as usual
x = randn(1000,1);
[count bin] = hist(x,50);
figure, bar(bin,count,'hist')
hAx1 = gca;

%# create a second axis as copy of first (without its content), 
%# reduce its size, and set limits accordingly
hAx2 = copyobj(hAx1,gcf);
set(hAx2, 'Position',get(hAx1,'Position').*[1 1 1 0.9], ...
    'XLimMode','manual', 'YLimMode','manual', ...
    'YLim',get(hAx1,'YLim').*[1 0.9])
delete(get(hAx2,'Children'))

%# hide first axis, and adjust Z-order
axis(hAx1,'off')
uistack(hAx1,'top')

%# add title and labels
title(hAx2,'Title')
xlabel(hAx2, 'Frequency'), ylabel(hAx2, 'Mag')

以下是之前和之后的情节:

before_screenshot after_screenshot

答案 1 :(得分:1)

您可以使用所需的比例显示一个轴,然后将数据绘制在另一个不可见且足够大的轴上,以保存您需要的数据:

f = figure;

% some fake data
x = 0:20;
y = 23-x;
a_max = 20;
b_max = 23;
a_height = .7;

%% axes you'll see
a = axes('Position', [.1 .1 .8 a_height]);
xlim([0 20]);
ylim([0 20]);

%% axes you'll use
scale = b_max/a_max;
a2 = axes('Position', [.1 .1 .8 scale*a_height]);
p = plot(x, y);
xlim([0 20]);
ylim([0 b_max]);
set(a2, 'Color', 'none', 'Visible', 'off');

答案 2 :(得分:1)

我有类似的问题,我已经解决了这个问题answer。在条形系列的情况下,代码如下:

[a,b] = hist(randn(1000,1)); % generate random data and histogram
h = bar(b,a); % plot bar series
ylim([0 70]) % set limits
set(get(h,'children'),'clipping','off')% turn off clippings

result