필터 지우기
필터 지우기

Adding Bar graph with another plot, convert the bar graph with a color axis, tittle in one figure?

조회 수: 1 (최근 30일)
I want to draw this Bar, but want to add color in the bar chart, title, axis, along with the bar graph want to add the original plot(curve) and legend. I am trying hold on command but it figure is not icking . Kindly tell me how to include all of them in one figure.
x = [0 0.2 0.4 0.7 0.8 1]; % start of bar y = zeros(length(x),1); dx = diff([x 1]); % width of bar dy = [1 5 7 9 3];
figure;
for ii=1:length(x) rectangle('position',[x(ii) y(ii) dx(ii) dy(ii)]) end

채택된 답변

Preethi
Preethi 2017년 1월 18일
hello,
hope this is helpful
x = [0 0.2 0.4 0.7 0.8 1]; % start of bar
y = zeros(length(x),1); dx = diff([x 1]); % width of bar
dy = [1 5 7 9 3];
figure;
bar([1,2,3,4,5,6],x,0.1,'y')
title('Name')
xlabel('x-label')
ylabel('y-label')
hold on
plot([0.1,0.2,0.4])
legend('bar','plot')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by