Get the value from coloumn correspond to the another coloimn max element
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Konstantin Shchukin
el 17 de Jul. de 2022
Respondida: Star Strider
el 17 de Jul. de 2022
I have a matrix n x 2. In the first coloumn some value is maximal. How can I get a value from the second coloumn which corresponses to the max value from the first coloumn?
0 comentarios
Respuesta aceptada
Star Strider
el 17 de Jul. de 2022
Try this —
M = rand(10,2)
[Col1Max,idx] = max(M(:,1))
Result = M(idx,2)
.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!