How to pick the j-th percentile of a distribution?
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (1)
pietro
il 6 Giu 2014
0 voti
3 Commenti
Star Strider
il 6 Giu 2014
My pleasure!
pietro
il 7 Giu 2014
Star Strider
il 7 Giu 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.
Categorie
Scopri di più su Descriptive Statistics in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!