Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

A question about the histograms please

3 visualizzazioni (ultimi 30 giorni)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD il 14 Dic 2017
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi everyone, As can be seen in the attached image, my histogram is built using counts, I WROTE THE FOLLOWING CODE TO CONVERT COUNTS TO %, how can i know exactly the percent of each load bin
figure,
>> histogram([tandem{K}]);
ylabels = get(gca, 'YTickLabel');
ylabels = linspace(0,100,length(ylabels));
set(gca,'YTickLabel',ylabels);

Risposte (1)

the cyclist
the cyclist il 14 Dic 2017
Modificato: the cyclist il 14 Dic 2017
As described in the documentation for the histogram function, you can used the 'Normalization' input parameter:
histogram(tandem{K},nbins,'Normalization','probability')
  13 Commenti
Image Analyst
Image Analyst il 14 Dic 2017
Is your data in the range 0 to 80, or 0 to 80,000? Either way, just use linspace and put in the overall min and overall max, and the number of bins you want to form the edges.
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD il 14 Dic 2017
thank you guys for your very powerful help

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by