Change histogram to more bars
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mustafa Vural
el 25 de Oct. de 2020
Comentada: Mustafa Vural
el 25 de Oct. de 2020
I am generating random numbers. The histogram has a sample size of 20 but only 5 bars. How can I control the bar numbers?
0 comentarios
Respuesta aceptada
Sindar
el 25 de Oct. de 2020
histogram accepts the number of bins as a second argument:
x = randn(1000,1);
nbins = 25;
h = histogram(x,nbins)
Más respuestas (1)
drummer
el 25 de Oct. de 2020
If you're using such command, you can do it by histogram(X, nBinsYouWant)
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!