Change histogram to more bars

9 vues (au cours des 30 derniers jours)
Mustafa Vural
Mustafa Vural le 25 Oct 2020
Commenté : Mustafa Vural le 25 Oct 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?

Réponse acceptée

Sindar
Sindar le 25 Oct 2020
histogram accepts the number of bins as a second argument:
x = randn(1000,1);
nbins = 25;
h = histogram(x,nbins)
  1 commentaire
Mustafa Vural
Mustafa Vural le 25 Oct 2020
thank you very much!

Connectez-vous pour commenter.

Plus de réponses (1)

drummer
drummer le 25 Oct 2020
This doc for histogram has the info to play with the number of bins in your histogram
If you're using such command, you can do it by histogram(X, nBinsYouWant)
  1 commentaire
Mustafa Vural
Mustafa Vural le 25 Oct 2020
thank you for the advice!

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by