How to pick the j-th percentile of a distribution?
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (1)
pietro
le 6 Juin 2014
0 votes
3 commentaires
Star Strider
le 6 Juin 2014
My pleasure!
pietro
le 7 Juin 2014
Star Strider
le 7 Juin 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.
Catégories
En savoir plus sur Descriptive Statistics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!