How to create a histogram for given data ??

Hi all! Let's say I have 2 set of numbers;
A = 3, 5, 7, 9
B = 2000, 2010, 2020, 2030
My question is how can I create a histogram such that A would be on the x-axis and B would be on the y-axis. Thanks.

3 Comments

bar([2000:10:2030]',[3:2:9]')
maybe?
Can I do the same thing by using hist() function ? If yes how ? :)
What do you want to take the histogram of? We were assuming that A was already the histogram - the counts - and that B was the bin centers.

Sign in to comment.

Answers (1)

As dpb has told you, use bar()
A = [3 5 7 9];
B = [2000 2010 2020 2030];
bar(A,B,'barwidth',0.4)
set(gca,'ylim',[1990 2050])

1 Comment

Can I do the same thing by using hist() function ? If yes how ? :)

Sign in to comment.

Tags

Asked:

on 29 Sep 2013

Commented:

on 29 Sep 2013

Community Treasure Hunt

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

Start Hunting!