Challenge: Execute unique(a,'rows') Faster for 'a' being uint8.
The "unique" function for the 'rows' options may be performed 10X more quickly for arrays of large rows, few columns, and of type uint8 (or values <256).
Input: c=randi(4,6000000,16,'uint8')-1;
Output: unique(c,'rows') 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
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers25
Suggested Problems
-
Convert Hard Drive marketing sizes to actual data sizes
69 Solvers
-
Cell Counting: How Many Draws?
2522 Solvers
-
Apply a function array to an array of numbers
103 Solvers
-
Volume of a sphere given its surface area
156 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1284 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!
If your purpose is to compare the efficiency, I recommend you to use tic/toc or timeit instead of clock/etime. The clock function measures the operating system time which is less reliable as compared to tic/toc measurements.