How to delete repeating value in a row ?

3 vues (au cours des 30 derniers jours)
omran alshalabi
omran alshalabi le 28 Août 2022
Commenté : omran alshalabi le 28 Août 2022
code: from a = [1 2 2 4 4 2 2 1 1 4 4 ]
become b = [1 2 4 2 1 4]

Réponse acceptée

Bruno Luong
Bruno Luong le 28 Août 2022
a = [1 2 2 4 4 2 2 1 1 4 4 ]
a = 1×11
1 2 2 4 4 2 2 1 1 4 4
b = a([true diff(a)~=0])
b = 1×6
1 2 4 2 1 4
  1 commentaire
omran alshalabi
omran alshalabi le 28 Août 2022
Thank you very much mr. Bruno Luong for your fast response.
It is function very good.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by