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

3 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

KSSV
KSSV am 6 Jan. 2021
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 Kommentare
KSSV
KSSV am 6 Jan. 2021
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]

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by