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!