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 comentarios

dpb
dpb el 29 de Sept. de 2013
bar([2000:10:2030]',[3:2:9]')
maybe?
EMRE
EMRE el 29 de Sept. de 2013
Can I do the same thing by using hist() function ? If yes how ? :)
Image Analyst
Image Analyst el 29 de Sept. de 2013
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.

Iniciar sesión para comentar.

Respuestas (1)

Wayne King
Wayne King el 29 de Sept. de 2013
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 comentario

EMRE
EMRE el 29 de Sept. de 2013
Can I do the same thing by using hist() function ? If yes how ? :)

Iniciar sesión para comentar.

Etiquetas

Preguntada:

el 29 de Sept. de 2013

Comentada:

el 29 de Sept. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by