Percentiles

12 views (last 30 days)
Colin
Colin on 11 Jun 2012
Edited: David Ebert on 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

Answers (1)

Colin
Colin on 11 Jun 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 Comment
David Ebert
David Ebert on 3 Apr 2022
Edited: David Ebert on 3 Apr 2022
Thanks, appreciate it, was looking for a similar function.

Sign in to comment.

Tags

Products

Community Treasure Hunt

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

Start Hunting!