How to replace multiple duplicate rows with single row?

2 vues (au cours des 30 derniers jours)
kahar
kahar le 3 Déc 2019
Modifié(e) : Adam Danz le 5 Déc 2019
Hi,
I have a table with a row containing multiple values, such as below.
0
10
10
10
10
10
14
6
10
10
10
4
... and so on.
I need to replace the multiple rows of 10 with just a single 10, like so.
0
10
14
6
10
6
...
I know unique doesn't work as I can't put a condition it to work between two rows that don't have 10. So any help would be greaty appreciated. Thanks in advance!
Kahar

Réponse acceptée

Adam Danz
Adam Danz le 4 Déc 2019
Modifié(e) : Adam Danz le 4 Déc 2019
x = [0
10
10
10
10
10
14
6
10
10
10
4];
x([1;diff(x)]==0) = [];
% x =
% 0
% 10
% 14
% 6
% 10
% 4
  2 commentaires
kahar
kahar le 4 Déc 2019
That worked a treat. Thank you so much!
Adam Danz
Adam Danz le 4 Déc 2019
Modifié(e) : Adam Danz le 5 Déc 2019
Glad I could help!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices 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