Problem 2200. counting groups!
This problem is about counting groups.
Example
If you have x:
x = [0.8 0.8 0.8 0.3 0.3 0.4 0.5 0.6 0.6 0.9]
then all 0.8's being first in line, get a value of 1, all 0.3's get a value of 2, all 0.4's a value of 3 and so on, till the output y is:
y = [1 1 1 2 2 3 4 5 5 6]
That's it!
Please note, to make it easier, the list will be "pre-sorted".
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers148
Suggested Problems
-
487 Solvers
-
Project Euler: Problem 7, Nth prime
1607 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
547 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
858 Solvers
-
Number of Even Elements in Fibonacci Sequence
1459 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!