How to clean up the repeating element in an array?

1 visualizzazione (ultimi 30 giorni)
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?

Risposta accettata

Walter Roberson
Walter Roberson il 27 Giu 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 Commenti
Walter Roberson
Walter Roberson il 27 Giu 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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Operators and Elementary Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by