First 5 minimum elements of a vector

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 commentaires

Jan
Jan le 7 Fév 2013
There is no minimum command in Matlab.
Bless
Bless le 7 Fév 2013
thanks, I wrongly typed for min...

Connectez-vous pour commenter.

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 7 Fév 2013
Modifié(e) : Azzi Abdelmalek le 7 Fév 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 commentaire

Amir Hosein Fardi
Amir Hosein Fardi le 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 .

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by