How to find the iteration number which gave me specific result?

2 vues (au cours des 30 derniers jours)
Abhinav
Abhinav le 25 Nov 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?

Réponse acceptée

Sean de Wolski
Sean de Wolski le 25 Nov 2014
Store the iteration number as well as the minimum.
Or just use min with two outputs
[minv, idx] = min(A)

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by