How to get the indices of the values inside every bin i.e. histcounts2

23 views (last 30 days)
How to get the indices of x and y for the counts that go into every bin.
x = randn(1,10); y = randn(1,10);
nbins = [8 8];
[C,Xedges,Yedges] = histcounts2(x,y, nbins);
C
C =
0 0 0 1 0 1 0 1
0 0 1 1 0 0 0 0
0 0 0 3 0 0 0 0
0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0
[C,Xedges,Yedges, binX, binY] = histcounts2(x,y, nbins);
binX(3), binY(4) %will give the opposite, in which bin is element x(3) y(4)

Accepted Answer

the cyclist
the cyclist on 15 Feb 2020
Edited: the cyclist on 15 Feb 2020
Suppose you want to know which elements are in the bin that is 8 down and 6 across. Then
binToFind = [8 6];
[tf,loc] = ismember([binX',binY'],binToFind,'row')
idx = find(loc)
idx gives the indices you want. It will be an empty vector if there are no elements in that bin.

More Answers (0)

Categories

Find more on Data Distribution Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!