If I have a set of data Y and a set of bins centered at X, I can use the HIST command to find how many of each Y are in each bin.
N = hist(Y,X)
What I would like to know is if there is a built in function that can tell me which bin each Y goes into, so
[N,I] = histMod(Y,X)
would mean that Y(I == 1) would return all the Y in bin 1, etc.
I know how to write this function, so I am only wondering if there is already a built-in in MATLAB that does this.