Info

This question is closed. Reopen it to edit or answer.

Make the location of bar graph in axes 1??

1 view (last 30 days)
Mahirah Hamdan
Mahirah Hamdan on 27 Apr 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
meanall=[meantheta,meanalpha,meanbeta];
color_map={'r','b','y'};
for i=1:3
bar(i, meanall(i),'facecolor',color_map{i});
hold on
end
hold off
this is my code in gui presenting the bar graph of meanall in different color. The problem is, my gui contains many axes and i want to locate this bar graph in axes 1. What should i add into my code?

Answers (1)

Geoff Hayes
Geoff Hayes on 27 Apr 2014
Hi Mahirah,
If you know the handle to the axes ( axes1_handle ) that you wish to add the bar graph to, you can do so as follows:
bar(axes1_handle,i,meanall(i),);
Please see bar for details.
Geoff
  2 Comments
Mahirah Hamdan
Mahirah Hamdan on 27 Apr 2014
i have try it, but the bar graph only show the last data which is meanbeta
Geoff Hayes
Geoff Hayes on 27 Apr 2014
Try using the hold on command to keep all bar graphs displayed on the axes. Run help hold from the command line for details.

Tags

Community Treasure Hunt

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

Start Hunting!