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

2 ビュー (過去 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 Center および File ExchangeBar Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by