Finding a position of minimum value element in a matrix

조회 수: 2 (최근 30일)
NIRBAN CHAKRABORTY
NIRBAN CHAKRABORTY 2022년 1월 7일
댓글: Matt J 2022년 1월 7일
I have matrix of 10*73 with random variable
Now i want to find out the minimum value in 13 to 20th column in each row
if i write the program like this is it work
for i=1:10
[r1,c1]=find(a(i,1:73)==min(a(i,13:20)))

답변 (1개)

KSSV
KSSV 2022년 1월 7일
편집: KSSV 2022년 1월 7일
A = rand(10,73) ;
[iwant,idx] = min(A(:,13:20),[],2) % idx gives column position
iwant = 10×1
0.1923 0.1928 0.1840 0.0789 0.2020 0.0124 0.5000 0.0500 0.1418 0.0890
  댓글 수: 1
Matt J
Matt J 2022년 1월 7일
If the column position needs to be with respect to the original dimensions of A, then you also need,
idx=idx+12;

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

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

제품


릴리스

R11.1

Community Treasure Hunt

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

Start Hunting!

Translated by