I want to find in which row the minimum element is
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Giannakis Stoukas
am 11 Apr. 2015
Beantwortet: Star Strider
am 11 Apr. 2015
I have a vector and i wand to find in which row i have the lowest number
0 Kommentare
Akzeptierte Antwort
Star Strider
am 11 Apr. 2015
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!