How to find indices of similar values in a vector?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Syed Fahad Hassan
el 1 de Ag. de 2017
Comentada: Syed Fahad Hassan
el 1 de Ag. de 2017
I want to get the indices of similar values in a vector. For example, I have a vector x=[1 1 2 2 3]. The output should be something like this: indices = 1,2 & 3,4
1 comentario
Jan
el 1 de Ag. de 2017
Duplicate question, see https://www.mathworks.com/matlabcentral/answers/351130-how-to-find-indices-of-similar-elements-in-a-vector
@Syed Fahad Hassan: Please post a question only once.
Respuesta aceptada
Rob Campbell
el 1 de Ag. de 2017
Editada: Rob Campbell
el 1 de Ag. de 2017
I'm unsure if you're looking for sequential numbers or not. The following just looks for repeats. Does it do what you want?
x = [1,1,2,2,3,4,5,6,1,2,3];
% Store in a cell array the indexes of values that repeat
reps={};
for thisU=unique(x)
f=find(x==thisU);
if length(f)>1, reps{end+1}=f; end
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Entering Commands 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!