필터 지우기
필터 지우기

Overlaying Histogram plot along a vurve

조회 수: 6 (최근 30일)
Arash
Arash 2020년 9월 28일
댓글: Ameer Hamza 2020년 9월 28일
HI, I have a curve in my plot and I want to add Histograms to different position of the curve as shown in the figure. I was wondering if this is possible? I appreciate any help.
Thanks
Thanks

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 9월 28일
Here is an example
f = figure;
ax = axes();
x = linspace(0, 3, 100);
y = exp(-x);
plot(x, y);
ax1 = axes('Position', [0.25 0.7 0.2 0.2]); % these are figure coordinates
box(ax1);
histogram(ax1, rand(10));
ax1.View = [90 90]; % rotate the axes
ax2 = axes('Position', [0.43 0.43 0.2 0.2]); % these are figure coordinates
box(ax2);
histogram(ax2, rand(10));
ax2.View = [90 90]; % rotate the axes
ax3 = axes('Position', [0.71 0.24 0.17 0.2]); % these are figure coordinates
box(ax3);
histogram(ax3, rand(10));
ax3.View = [90 90]; % rotate the axes
  댓글 수: 2
Arash
Arash 2020년 9월 28일
As italian says, grazie mille (thank you so much)
Ameer Hamza
Ameer Hamza 2020년 9월 28일
I am glad to be of help! :)

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by