Challenge: Execute unique(a,'rows','stable') Faster for 'a' being uint8.
The "unique" function for the 'rows' and 'stable' options may be performed 10X more quickly for arrays of large rows, few columns, and uint8 (or values <256).
Input: c=randi(4,6000000,16,'uint8')-1;
Output: unique(c,'rows','stable') or equivalent
Scoring: Time in milli-seconds
Hints:
- unique can sort a single column >10X faster than an array of rows
- 10X improvement is applicable to arrays where rows can be represented as a uint32 value
- 5X improvement occurs where arrays require uint64 representation
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers24
Suggested Problems
-
290 Solvers
-
The Hitchhiker's Guide to MATLAB
3413 Solvers
-
Make an awesome ramp for a tiny motorcycle stuntman
762 Solvers
-
Getting the indices from a vector
12216 Solvers
-
Detect a number and replace with two NaN's
200 Solvers
More from this Author306
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!