How to clean up the repeating element in an array?

1 view (last 30 days)
I have a variable x = [0 0 0 0 2 2 4]
I want to create another varible v that stores only the different element inside x which mean v = [0 2 4]
How to do that?

Accepted Answer

Walter Roberson
Walter Roberson on 27 Jun 2022
x = [0 0 0 0 2 2 4]
x = 1×7
0 0 0 0 2 2 4
v = unique(x)
v = 1×3
0 2 4
  3 Comments
Walter Roberson
Walter Roberson on 27 Jun 2022
x = [ 0 0 2 5 1 1]
x = 1×6
0 0 2 5 1 1
v = unique(x, 'stable')
v = 1×4
0 2 5 1

Sign in to comment.

More Answers (0)

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!