How to pick the j-th percentile of a distribution?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
pietro
el 6 de Jun. de 2014
0 votos
3 comentarios
Star Strider
el 6 de Jun. de 2014
My pleasure!
pietro
el 7 de Jun. de 2014
Star Strider
el 7 de Jun. de 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.
Categorías
Más información sobre Descriptive Statistics en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!