Calculate median values of slices of array associated with histogram bins
Show older comments
I have an array (array1) which I want to put into histogram bins. I have a second array (array2) which is the same length.
I can sum the values of array2 in each bin with this:
[count, edges, idx] = histcounts(array1,edges);
binsums = accumarray(idx,array2);
But how can I calculate the median values of array2 in each bin?
Accepted Answer
More Answers (1)
Steven Lord
on 15 Nov 2023
0 votes
If all you want is the bin numbers, you could also use the discretize function instead of histcounts.
Categories
Find more on Histograms 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!