MATLAB: Sort without duplicate

sortsort without duplicate

Hi,
I want to sort a vector leaving only unique values.
For example, if I have:
1
2
2
3
4
4
5
I want to get
1
2
3
4
5
Could anybody help me to solve this?

Best Answer

doc unique
The unique function find unique elements of vector
Related Question