Histogram with two axes

조회 수: 9 (최근 30일)
Felix Müller
Felix Müller 2021년 11월 22일
댓글: Felix Müller 2021년 11월 23일
I want to add an axis to my histogram plot, I want the left one to be the absolute axis and the right one to be relative. I know how to plot those individually:
h = histogram(data);
h = histogram(data, 'Normalization', 'probability');
But I want to combine them. All approaches I found for using two axes assume I want two different things plotted, but I want one plot and only add the corresponding axis.

채택된 답변

Benjamin Kraus
Benjamin Kraus 2021년 11월 22일
If I understand correctly, you want two y-axes: one with the real numbers and another with relative values.
There is no built-in way to do this, but it can be done with the yyaxis command, and some manual code to synchronize the axes. Note that using this approach, it is up to you to make sure the left and right say in-sync with each other. You do this by setting the limits on the right based on the limits on the left.
data = randn(1000,1);
yyaxis left
h = histogram(data);
leftLim = ylim; % Query the left limits
yyaxis right
scaleFactor = numel(data);
ylim(leftLim/scaleFactor); % Set the right limits
  댓글 수: 2
Benjamin Kraus
Benjamin Kraus 2021년 11월 22일
A more advanced approach is to use the LimitsChangedFcn to keep the two rulers in sync.
This will allow you to pan/zoom on the axes and keep the rulers aligned properly.
Note in the code below the YAxis property on the Axes is a vector with two elements: the first is a handle to the left y-axis and the second is a handle to the right y-axis.
data = randn(1000,1);
ax = axes;
yyaxis left
h = histogram(data);
scaleFactor = numel(data);
ax.YAxis(1).LimitsChangedFcn = @(~,e) set(ax.YAxis(2),'Limits', e.NewLimits/scaleFactor);
Felix Müller
Felix Müller 2021년 11월 23일
Thanks a lot! For me the first approach is enough because I only produce and save the pictures and don't scroll them, but thanks for the advanced approach as well!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

태그

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by