Effacer les filtres
Effacer les filtres

Remove repeating variables and replacing them

2 vues (au cours des 30 derniers jours)
AA
AA le 22 Août 2020
Modifié(e) : Walter Roberson le 22 Août 2020
Ex: In the array
x=[4 4 5 5 1 2 2 3 3 3 4 5]
, i want to eliminate all repeating elements and retain non-repeating elements
(4, 5,1,2,3,4,5)
i.e., If
x=[4 4 5 5 1 2 2 3 3 3 4 5]
, answer should be
x=[4 5 1 2 3 4 5]

Réponse acceptée

Bruno Luong
Bruno Luong le 22 Août 2020
x = x([true diff(x)~=0])

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by