First 5 minimum elements of a vector
15 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 2 月 7 日
編集済み: Azzi Abdelmalek
2013 年 2 月 7 日
vector=rand(10,1)
[x,idx]=sort(vector)
out_x=x(1:5) % 5 first values
out_idx=idx(1:5) % corresponding indices
1 件のコメント
Amir Hosein Fardi
2021 年 11 月 23 日
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 .
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!