Problem 980. Unique values without using UNIQUE function
You must return unique values in a vector in stable mode without using the unique function.
About stable order flag:
For example:
C = unique([5 5 3 4],'stable')
returns
C = [5 3 4].
The values are returned in the same order as in the original vector
Solution Stats
Problem Comments
-
2 Comments
Akrem Hadji
on 17 Oct 2020
The link forward to MATLAB stable releases not to unique function documentation!!
goc3
on 27 Oct 2020
The link has been updated.
Solution Comments
Show commentsGroup

Indexing II
- 22 Problems
- 160 Finishers
- Getting the indices from a vector
- Symmetry of vector
- Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
- Count consecutive 0's in between values of 1
- Find last zero for each column
- Oh Zero Zero Zero!!!
- Create an index-powered vector
- Find nth maximum
- Decimation - Optimized for speed
- Unique values without using UNIQUE function
- Symmetry of vector
- Generate a vector like 1,2,2,3,3,3,4,4,4,4
- Create an n-by-n null matrix and fill with ones certain positions
- Implement a bubble sort technique and output the number of swaps required
- Create a vector whose elements depend on the previous element
- Set a diagonal
- Unique values without using UNIQUE function
- Generate a vector like 1,2,2,3,3,3,4,4,4,4
- Change the sign of even index entries of the reversed vector
- Decimation
- Insert zeros into vector
- Reference Index Number
- Determine the number of odd integers in a vector
- Max index of 3D array
- Finding peaks
- Getting the indices from a vector
Problem Recent Solvers371
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!