What is histc for?

5 次查看(过去 30 天)
My teacher gave me a mfile for my final project. I read the code and i saw histc command. I have read about histc in Matlab help but i still dont understand what is it for.

采纳的回答

Walter Roberson
Walter Roberson 2018-1-19
histc counts the number of items that fall into bins whose edges you specify.
histc (or equivalent) are the fundamental routines behind creating histograms -- histograms require counting the number of items that fall into each bin and then using a bar plot on the result.
There are other uses for histc as well, such as counting the number of occurrences of items. For example if you had a vector of values representing apples, oranges, and grapefruits, then you could use histc to count how many apples, how many oranges, how many grapefruits.
As well as just counting, histc() can tell you the number of the bin that each item falls into, which can be useful in many different situations.

更多回答(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