How can I find the number of row in which the maximum value obtained for a particular column?
2 次查看(过去 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
0 个评论
采纳的回答
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
fprintf('The maximum value occurs in %d row\n',idx)
3 个评论
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 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!