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 Commenti

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.

Accedi per commentare.

Risposte (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 Commento

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

Accedi per commentare.

Richiesto:

il 29 Set 2013

Commentato:

il 29 Set 2013

Community Treasure Hunt

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

Start Hunting!

Translated by