Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

remove rows with duplicates

1 vue (au cours des 30 derniers jours)
alpedhuez
alpedhuez le 19 Avr 2019
Clôturé : MATLAB Answer Bot le 20 Août 2021
Consider a following spreadsheet
Column 1 2 3
10 10 10
11 10 9
11 10 10
In this setting I want to delete Row 2 and Row 3 because they have duplicates in Column 1.
More generally, the problem is "I would like to delete any row that has a duplicate in Column 1." Please advise how to proceed

Réponses (1)

Walter Roberson
Walter Roberson le 20 Avr 2019
need_to_delete = [false; any(ismember(YourArray(2:end,:), YourArray(1,:)),2)];
YourArray(need_to_delete, :) = [];

Tags

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by