how to plot normalised histogram with specific number of bins?

1 次查看(过去 30 天)
I have a vector of 1000 variables and I want to plot the normalised histogram with specific number of bins.
for a the normalisation I know that I should use this code: histogram(class_1,'Normalization','probability');
and for the specific number of bins(500 for example) I should use this code: histogram(class_1,500);
but how I use them together?

采纳的回答

Star Strider
Star Strider 2019-5-31
Try this:
figure
histogram(class_1, 500, 'Normalization','probability')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by