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

34 visualizaciones (últimos 30 días)
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)
  2 comentarios
the cyclist
the cyclist el 15 de Feb. de 2020
discretize(x,Xedges)
gives the same result as binX, so I don't think it helps here.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 15 de Feb. de 2020
Editada: the cyclist el 15 de Feb. de 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.

Más respuestas (0)

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by