unique function but with repeated groups
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Haneya Qureshi
 el 24 de Abr. de 2021
  
    
    
    
    
    Respondida: Haneya Qureshi
 el 24 de Abr. de 2021
            I have= [1 1 1 5 5 5 1 1]
I want first indices of each repeat values: [1 4 7]
i.e., the first group of repeated 1's start at index 1, the second group of repeated 5's start at index 4 and the third group of repeated 1s start at index 7
I am trying unique function, but it misses out the last group of 1s.
[~,ic,~]=unique([1 1 1 5 5 5 1 1], 'stable') 
gives me [1 4] and not [1 4 7]
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
				Más información sobre Matrix Indexing 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!
