Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x.
Ties are resolved by a sort from lowest to highest.
So if
x = [1 2 2 2 3 3 7 7 93]
then
y = [2 3 7 1 93]
this type of hack solutions should be banned
The behavior of accumarray has changed. In R2012b, I used I = accumarray(I.', 1); and it worked. I had to remove the transpose to pass the test suite.
Interesting cody behavior by masking anonymous functions with str2num...
Test Suite having a hissy fit because it wanted a col not a row o_O
4837 Solvers
5170 Solvers
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
Back to basics 16 - byte order
149 Solvers
Flip the vector from right to left
744 Solvers