i have a matrix A of size 523418*2, i want to delete repeating pair?? as i explained below. any help??
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
M.Prasanna kumar
el 5 de Feb. de 2019
Comentada: Guillaume
el 5 de Feb. de 2019
a = [ 1 2 ; 2 1 ; 2 3 ; 5 2 ]
a =
1 2
2 1
2 3
5 2
i used following two logics,but neither gives my answer
>> uniqueresult = unique(sort(a,2), 'rows');
or
uniqueresult = unique(sort(a,2), 'rows','stable');
but this gives as following
uniqueresult =
1 2
2 3
2 5
but i want as
uniqueresult =
1 2
2 3
5 2
0 comentarios
Respuesta aceptada
Guillaume
el 5 de Feb. de 2019
[~, tokeep] = unique(sort(a, 2), 'rows', 'stable'); %stable optional if you don't care about the ROW ordering
result = a(tokeep, :)
2 comentarios
Guillaume
el 5 de Feb. de 2019
~ means don't care about that output (the first one). We only keep about the second output, which is the index of the unique rows (the one you want to keep).
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!