How to pick the j-th percentile of a distribution?
Show older comments
Hi all,
I have some data and I want to pick the j-th percentile of the distribution.
Here an example:
a=2000;
b=300;
c=a+(b)*randn(100,1);
cdfval = fitdist(arg_1, 'normal');
So how can I get the 50° percentile of the distribution, that it is 2000?
thanks
Accepted Answer
More Answers (1)
pietro
on 6 Jun 2014
0 votes
3 Comments
Star Strider
on 6 Jun 2014
My pleasure!
pietro
on 7 Jun 2014
Star Strider
on 7 Jun 2014
If you know the distribution, then estimate its parameters from your experimental data (the fitdist function is probably best here) and calculate the percentiles from the cumulative distribution function for that distribution. Use the icdf function for the appropriate distribution, Don’t use prctile in that situation.
Categories
Find more on Descriptive Statistics 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!