Peak "coordinates of a histogram

1 回表示 (過去 30 日間)
Damiano Capocci
Damiano Capocci 2019 年 3 月 9 日
コメント済み: Damiano Capocci 2019 年 3 月 13 日
Hi, I want to study the histogram of an array. This array has only one peak, I want to determine the bin related to the peak. I have just tried ksdensity() and then findpeaks() but if I want a good precision the hig number of points of ksdensity makes the process slow. Please could you tell me how to find out the bin related to the peak? A good hint could be to transform the histogram into a vector.

採用された回答

Star Strider
Star Strider 2019 年 3 月 9 日
Not at all certain what question you are asking. If you want to know the indices of the data assigned to each bin, see the histcounts (link) documentation on Determine Bin Placement (link).
If you are not using histcounts, consult the appropriate documentation for the function.
  1 件のコメント
Damiano Capocci
Damiano Capocci 2019 年 3 月 13 日
yes it works, after histcounts I do :
%V is the vector%
[x,y]=max(V)

サインインしてコメントする。

その他の回答 (1 件)

Steven Lord
Steven Lord 2019 年 3 月 10 日
Are you creating the histogram (the graphics object) or binning the data using histcounts?
In the former case. retrieve the BinCounts and BinEdges properties from the histcounts object. Use max to identify the maximum count and its location, and index into the edges vector to identify the edges of that bin.
In the latter case, do the same thing with the first two outputs of histcounts.
  1 件のコメント
Damiano Capocci
Damiano Capocci 2019 年 3 月 12 日
I create the histogram from an array. However i do not know histcounts.Anyway I will try.

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by