Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to draw an histogram?

36 vues (au cours des 30 derniers jours)
Prince
Prince le 4 Avr 2024 à 0:09
Clôturé : DGM le 4 Avr 2024 à 3:13
How do I draw an histogram knowing the frequency of all the individual elements in a 150x150 matrix appears using matlab?
  3 commentaires
Prince
Prince le 4 Avr 2024 à 0:58
Alright
DGM
DGM le 4 Avr 2024 à 3:13
Given that my answer has already been provided, I see no reason to keep it or to keep this thread. Other mods are welcome to tidy up the others, but I'm just going to close this one.

Réponses (1)

DGM
DGM le 4 Avr 2024 à 0:13
Modifié(e) : DGM le 4 Avr 2024 à 0:15
See histogram() and histcounts()
A = randn(150,150); % normally distributed random numbers
histogram(A) % looks like a gaussian to me
There are many different options, but I'm just using defaults here. If you have specific bin edges or a preferred method of calculating bin locations, see the documentation for details on how to set that up.
  1 commentaire
Prince
Prince le 4 Avr 2024 à 0:43
Can you help me more details. I am still stucked.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by