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

3 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Stair Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by