Borrar filtros
Borrar filtros

how to organize my histogram please

1 visualización (últimos 30 días)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD el 24 de Abr. de 2018
Editada: Star Strider el 24 de Abr. de 2018
Dear All, I have a column matrix Called (Load), it represents the Loads of Vehicles, the dimension for this matrix is 1000 by 1, I was ytrying to draw the histogram for this matrix using the following code, it means I need 39 Load Bins in the histogram, my question is: how can I tell MATLAB to draw this histogram with 39 bins but starting from 3000 ending with 41000? I need to define the boundaries and number of bins together. my code is:
histObject=histogram(Load,39,'Normalization','probability');
Please help

Respuesta aceptada

Star Strider
Star Strider el 24 de Abr. de 2018
Try this:
edges = linspace(3000, 41000, 40); % Define 39 Bins With 40 Edges
histObject = histogram(Load, edges, 'Normalization','probability');
  9 comentarios
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD el 24 de Abr. de 2018
It really keeps giving me an empty chart even i wrote the same as you did. any way thank you very much for your help
Star Strider
Star Strider el 24 de Abr. de 2018
Editada: Star Strider el 24 de Abr. de 2018

As always, my pleasure.

I am using R2018a if that is important.

I would suggest that you see if the histfit function will do what you want. (I have not used it here.)

Iniciar sesión para comentar.

Más respuestas (0)

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!

Translated by