Percentiles

16 visualizzazioni (ultimi 30 giorni)
Colin
Colin il 11 Giu 2012
Modificato: David Ebert il 3 Apr 2022
Is there a function that returns the percentile, p, for a given value, x, in array, A?
As opposed to prtcile(A,p) which returns x for array A and percentile p.
The equivalent Excel function is PERCENTRANK.
Thanks

Risposte (1)

Colin
Colin il 11 Giu 2012
I found this via google search...
A function to calculate the percent rank of each element of a matrix is not available in MATLAB (as at end June 2009).
To work around this issue, use the function TIEDRANK from the Statistics Toolbox and normalize by dividing by the length of the input vector. This converts the result to percentiles.
eg. x = rand(1,40); tiedrank(x)/length(x);
  1 Commento
David Ebert
David Ebert il 3 Apr 2022
Modificato: David Ebert il 3 Apr 2022
Thanks, appreciate it, was looking for a similar function.

Accedi per commentare.

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by