필터 지우기
필터 지우기

How can I plot multiple areas in the same graph?

조회 수: 13 (최근 30일)
Héctor
Héctor 2014년 5월 19일
답변: Ullekh Gambhira 2018년 6월 16일
I have 6 vectors and I want to make a plot of their areas, exactly like the image attached.
Is there any way to acomplished that? Thanks a lot!

채택된 답변

Kelly Kearney
Kelly Kearney 2014년 5월 19일
Here's an example of the stacking area plots idea:
% Sample data
data = bsxfun(@plus, normpdf(linspace(0,6,100), 2, 0.5)', rand(100,6)*0.1);
data = bsxfun(@plus, data, rand(1,6)*0.5 + 0.25);
% Plot
n = size(data,2);
base = min(data) - 0.01; % Base value for each dataset
bloc = (0:n-1) * 0.5; % Where that base value will be located
axes; hold on;
for ii = 1:size(data,2)
h(ii) = area(data(:,ii)-base(ii)+bloc(ii), bloc(ii));
end
uistack(h, 'top');
  댓글 수: 3
Kelly Kearney
Kelly Kearney 2015년 4월 7일
You're right, 2014b+ versions seem to reset the base value for all area plots on an axis together, rather than allowing different ones per area object, as in previous versions. I'd submit a bug report on that... seems like an undocumented (and very inconvenient) change, at the least.
Hsin-Hua Wang
Hsin-Hua Wang 2016년 6월 23일
Answering my own question one year ago, this feature has not been fixed yet, meaning one baseline value for one axes. I end up assign every plot their own axes and hide everything for those axes.

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

추가 답변 (2개)

Héctor
Héctor 2014년 5월 19일
thats what I was looking for, thanks!

Ullekh Gambhira
Ullekh Gambhira 2018년 6월 16일
I am facing the same issue, I solved it by using "Shade area between two curves" function by John Bockstege. The file exchange link for this function is below:
https://www.mathworks.com/matlabcentral/fileexchange/13188-shade-area-between-two-curves
It does not consider base value, but basically shades the area between two lines. So one line can be your vector and the other can be a baseline*ones(size(x)).
Hope this helps.
Regards, Ullekh

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by