How can I find the number of row in which the maximum value obtained for a particular column?

조회 수: 3 (최근 30일)
n = 3
B = rand(n)
A = B
for j = 1:length(A(1,:))
Amax = A(1,j);
for i = 1:length(A(:,1))
if(A(i,j)> Amax)
Amax = A(i,j);
else
Amax = Amax;
end
end
Amax1(1,1)=Amax
end

채택된 답변

KSSV
KSSV 2021년 1월 6일
Read about the function max.
A = rand(10) ; % 10*10 matrix
[val,idx] = max(A(:,3)) % maximum value for the oclumn 3
val = 0.9846
idx = 4
fprintf('The maximum value occurs in %d row\n',idx)
The maximum value occurs in 4 row
  댓글 수: 3
KSSV
KSSV 2021년 1월 6일
A = rand(5,1) ;
maxval = A(1);
idx = 1 ;
for i = 1:length(A)
if A(i) > maxval
maxval = A(i);
idx = i ;
end
end
[maxval idx]

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by