Effacer les filtres
Effacer les filtres

How to remove repeating entries from a vector?

3 vues (au cours des 30 derniers jours)
L'O.G.
L'O.G. le 17 Avr 2023
Commenté : Image Analyst le 17 Avr 2023
How do you remove repeating entries in a vector?
For example: A = [1 1 1 0 0 1 1 1 1 0 0 0 0 0] should return B = [ 1 0 1 0].
The unique function does not do this from what I can tell. For the above example, it would return [0 1], which is not what I want.
  1 commentaire
Image Analyst
Image Analyst le 17 Avr 2023
Are the values always 1s and 0s? Or could you have something like [9,9,9,4,4,6,6,6,1,1,0,2,2]? If the latter would the result be [9,4,6,1,0,2]? What's the use case? Why do you need it? Is it your homework?

Connectez-vous pour commenter.

Réponses (1)

Matt J
Matt J le 17 Avr 2023
Modifié(e) : Matt J le 17 Avr 2023
You can use this FEX download,
A = [1 1 1 0 0 1 1 1 1 0 0 0 0 0];
starts=groupLims(A);
B = A(starts)
B =
1 0 1 0

Catégories

En savoir plus sur Downloads dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by