how can I find the smallest 3 numbers in a matrix array?

조회 수: 5 (최근 30일)
Ararat Cetinkaya
Ararat Cetinkaya 2020년 2월 8일
편집: per isakson 2020년 2월 8일
Hi everyone,
I have a matrix array with dimensons 1x91. I want to find smallest 3 numbers in this array, how can ı find ?
Thanks for you answers

채택된 답변

Walter Roberson
Walter Roberson 2020년 2월 8일
mink(TheArray, 3)
  댓글 수: 2
Ararat Cetinkaya
Ararat Cetinkaya 2020년 2월 8일
Can ı find the locations of the datas, if I write [a,b]=mink(thearray,3)
per isakson
per isakson 2020년 2월 8일
편집: per isakson 2020년 2월 8일
>> m = rand(1,12);
>> [ mn, ix ] = mink(m,3)
mn =
0.035712 0.14189 0.42176
ix =
10 4 5
>> m(ix)
ans =
0.035712 0.14189 0.42176

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2020년 2월 8일
편집: KSSV 2020년 2월 8일
A = rand(1,91) ;
[val,idx] = sort(A) ;
iwant = val(1:3)
locations = idx(1:3)
  댓글 수: 2
Ararat Cetinkaya
Ararat Cetinkaya 2020년 2월 8일
Actually, I need the loacations of the arrays too, beacuse of that ı think this will not usefull. thnx for your answer.
KSSV
KSSV 2020년 2월 8일
Getting locations is also possible....edited the answer. Check it.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by