Show all indices of I in [C,I] = max(...)

3 visualizaciones (últimos 30 días)
Zach Adams
Zach Adams el 7 de Oct. de 2019
Respondida: Walter Roberson el 7 de Oct. de 2019
I am trying to show all of the row values that share a maximum value of a certain column. How do I show all indices for this instead of just the first index?
A sample array would look like:
1 9
2 9
3 4
4 5
I need an output of I = 1 and I = 2 because they share the max value of nine.

Respuesta aceptada

Walter Roberson
Walter Roberson el 7 de Oct. de 2019
target_value = max(TheColumn);
find(TheColumn == target_value)

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by