I want to find in which row the minimum element is
12 次查看(过去 30 天)
显示 更早的评论
I have a vector and i wand to find in which row i have the lowest number
0 个评论
采纳的回答
Star Strider
2015-4-11
Use the min function with two outputs:
[Vmin,Idxmin] = max(V);
If ‘V’ is your column vector, ‘Vmin’ will be the minimum value, and ‘Idxmin’ will be the index of the first occurrence of the minimum. If you have more than one value of the minimum, use the find function:
Idxmin = find(V == min(V));
It will return the indexes (row numbers) of all values of the minimum.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!