Участок вне оси в Matlab - PullRequest
       21

Участок вне оси в Matlab

5 голосов
/ 06 августа 2011

Как построить что-то вне оси с помощью MATLAB? Мне хотелось построить что-то похожее на эту фигуру;

Plot with bar outside axis

Спасибо.

Ответы [ 3 ]

6 голосов
/ 06 августа 2011

Вот один из возможных трюков с использованием двух осей:

%# 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 голос
/ 21 ноября 2013

У меня была похожая проблема, и я решил ее благодаря этому ответу .В случае серии стержней код выглядит следующим образом:

[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

1 голос
/ 06 августа 2011

Вы можете отобразить одну ось с желаемой шкалой, а затем нанести данные на другую ось, которая невидима и достаточно велика для хранения необходимых вам данных:

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');
...