Adding Bar graph with another plot, convert the bar graph with a color axis, tittle in one figure?
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!