First 5 minimum elements of a vector
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bless
am 7 Feb. 2013
Kommentiert: Amir Hosein Fardi
am 23 Nov. 2021
I found the minimum element of vector by
[m index]=min(vector);
How to find first five minimum elements of a vector and its index??
2 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 7 Feb. 2013
Bearbeitet: Azzi Abdelmalek
am 7 Feb. 2013
vector=rand(10,1)
[x,idx]=sort(vector)
out_x=x(1:5) % 5 first values
out_idx=idx(1:5) % corresponding indices
1 Kommentar
Amir Hosein Fardi
am 23 Nov. 2021
that was really helpful
after 5 yrs of matlab programming today I was thinking about it and I really got confused to find the proper way to do that .
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!