How to find the iteration number which gave me specific result?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Abhinav
el 25 de Nov. de 2014
Respondida: Sean de Wolski
el 25 de Nov. de 2014
Say I am generating an array in matlab using for loop. In that array I have to find which value is minimum, so I used min function to find out. No I want to find out which iteration gave that result. How can I achieve this?
0 comentarios
Respuesta aceptada
Sean de Wolski
el 25 de Nov. de 2014
Store the iteration number as well as the minimum.
Or just use min with two outputs
[minv, idx] = min(A)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!