Info
この質問は閉じられています。 編集または回答するには再度開いてください。
finding min nummber in a vector
1 回表示 (過去 30 日間)
古いコメントを表示
hi :}
I got to write a program in one code line.
Finding minimum num in a vector without using min or max functions.
1 件のコメント
回答 (2 件)
KSSV
2017 年 7 月 28 日
You arrange your vector in ascending order using sort and pick the first number.
V = rand(10,1) ;
V = sort(V,'ascend') ;
iwant = V(1)
5 件のコメント
Image Analyst
2017 年 7 月 29 日
OK, then I guess we can put both "statements" on one line of code:
V = sort(V,'ascend'); iwant = V(1)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!