Manually compute quantiles given probability of the data
2 views (last 30 days)
Show older comments
I want to calculate some quantiles in Matlab but given specific probabilities so I cannot use prctile or quantile.
Specifically if I have
Values [a b c d e f;
Probabilities .5 .1 .2 .05 .15]
I can sort with
sortrows,
then do a cumulative sum over the second row and finally interpolate using
interp1q.
Is there a faster way to do this?
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!