Creating a histogram

1 visualización (últimos 30 días)
John
John el 31 de Mzo. de 2012
Hi,
Is the correct syntax to create a histogram of data X with 22 bins the following
hist(X,22)
When I type it noting happens?

Respuesta aceptada

Wayne King
Wayne King el 31 de Mzo. de 2012
That is correct. When you say "nothing happens", do you mean that the line of code executes, but no figure is produced? If so, try
clf;
X = randn(1000,1);
hist(X,22);
  3 comentarios
John
John el 31 de Mzo. de 2012
Got it working, thanks
Wayne King
Wayne King el 31 de Mzo. de 2012
yea, sorry about that! I fixed that :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by