Sorting group position from 1
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Abhineet Prakash
el 28 de Nov. de 2022
Respondida: Jonas
el 28 de Nov. de 2022
I have a group number of array
1) [2 3 2 1] I want [1 2 1 3]
2) [3 3 1 2] I want [1 1 2 3]
0 comentarios
Respuesta aceptada
Jonas
el 28 de Nov. de 2022
i think you are searching for this:
[~,~,c]=unique([2 3 2 1],'stable')
[~,~,c]=unique([3 3 1 2],'stable')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices 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!