removing repeated values from an array
Mostrar comentarios más antiguos
Suppose I have an array [1.2 8 89 1.2 4 8 32 1.2]. Is there any MATLAB function that gives me the array without repeated values: [1.2 8 89 4 32]?!
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 14 de Sept. de 2013
Try this:
m = [1.2 8 89 1.2 4 8 32 1.2]
mu = unique(m, 'stable')
1 comentario
Ibehma01
el 14 de Sept. de 2013
Categorías
Más información sobre Shifting and Sorting Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!