finding min nummber in a vector

hi :}
I got to write a program in one code line.
Finding minimum num in a vector without using min or max functions.

回答 (2 件)

KSSV
KSSV 2017 年 7 月 28 日

0 投票

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 件のコメント

KSSV
KSSV 2017 年 7 月 29 日
Yuval Ohoyan Thank you, If one of the element in minus sign i just add abs func?
KSSV
KSSV 2017 年 7 月 29 日
Why abs? That case negative number will be minimum.
Image Analyst
Image Analyst 2017 年 7 月 29 日
But that's two lines of code and apparently the instructor/answer thinks it can be done in one line of code.
Walter Roberson
Walter Roberson 2017 年 7 月 29 日
The requirement is one line, not one statement.
Image Analyst
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)
yuval ohayon
yuval ohayon 2017 年 7 月 29 日

0 投票

Arranging the vector in acending order by the absolut value of the elements,this is another task that i confuse about.

この質問は閉じられています。

タグ

質問済み:

2017 年 7 月 28 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by