Extract 5 highest value of a vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Francesco
el 26 de Feb. de 2014
Editada: Andrei Bobrov
el 26 de Feb. de 2014
If I want to extract the indices of the 5 highest value of a avg vector (30x1 for example) how can I do?
ind = find(avgDE... )
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 26 de Feb. de 2014
Editada: Andrei Bobrov
el 26 de Feb. de 2014
[a,ii] = sort(avgDE,'descend');
outidx = ii(1:5);
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!