How to find indices of non duplicate rows in a matrix?

12 visualizaciones (últimos 30 días)
Luca M
Luca M el 20 de En. de 2021
Editada: Luca M el 21 de En. de 2021
I need to find the indices of non duplicate rows in a matrix and I am not sure if there is a way to do it with:
unique()
if for example in the vector case I have:
A = [1 1 2 2 3 4 5 6 6]
I'd like to produce (as these 3 elements are unique in A):
B = [3 4 5]
by using:
A(unique_indices)
after somehow building:
unique_indices = [5 6 7]
in this case. The unique function will return a single copy of each element. Is there a quick way to do it? Thanks for tips.

Respuesta aceptada

dpb
dpb el 20 de En. de 2021
>> A = [1 1 2 2 3 4 5 6 6];
>> [n,b]=histc(A,unique(A));
>> A(ismember(b,find(n==1)))
ans =
3.00 4.00 5.00
>>

Más respuestas (0)

Categorías

Más información sobre NaNs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by