I have a question
Show older comments
I have bucket bounds from -98% to +100% and the no of observations are 41 from Excel.I want calculate how many of these observations occur from my data: =COUNTIFS(my data,"<"&$C56,my data,">="&$C55)/COUNT(my data). How do I do this in MatLab?
Answers (1)
Guillaume
on 2 Feb 2018
If there's only one bucket you're interested in then,
sum(mydata >= lowerlimit & mydata < upperlimit) / numel(mydata)
If you're interested in more than one bucket then you can do it all at once for all the buckets with:
histcounts(mydata, yourbucketedges, 'Normalization', 'probability')
1 Comment
Siphiwo Nqangase
on 5 Feb 2018
Categories
Find more on Spreadsheets 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!