Problem 1134. Get ranks of values in a vector
For a given vector, say [6 3 8 2], return the ranks (ascending) of observations, i.e. [3 2 4 1]. Do not worry about tied ranks. If ties exist, what comes first takes the lower rank, e.g., [1 1 3] returns [1 2 3]. More exact treatment of ties will follow. No toolbox functions please!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers52
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15635 Solvers
-
Project Euler: Problem 7, Nth prime
1569 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
543 Solvers
-
Given a matrix, return the last eigen value
225 Solvers
-
Multiples of a Number in a Given Range
775 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!