How to find the maximum element among the minimum elements in the columns in matrix m:n? With using loops.

조회 수: 1 (최근 30일)
It seemed simple from the beginning, but I got confused. Can anyone show a script that will do this?
  댓글 수: 2
Ksenia Kolobaeva
Ksenia Kolobaeva 2020년 3월 25일
% % so... I started like this:
n = input(num2str('Rows: ', 's'));
m = input(num2str('Columns ', 's'));
massive = round(100+(200-100)*rand(n,m));
disp(massive)
for i = 1:m
strr = massive(:,i);
for j = 1:n
% % And there should be a function that compares the elements, selects the minimum in the column and then compares which one is the maximum. I can't figure out what it should be.
end
end

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

답변 (1개)

Guillaume
Guillaume 2020년 3월 25일
There's never any need for a loop for things like that. Loops usually complicate the code in matlab.
maxofcolmin = max(min(massive, [], 2)); %return the maximum of the minimum across the columns of massive
  댓글 수: 2
Ksenia Kolobaeva
Ksenia Kolobaeva 2020년 3월 25일
Thank you! I know that all can be done shortly and simply. But the task requires the use of loops, and this is the problem.
Guillaume
Guillaume 2020년 3월 25일
Oh, it's some homework. I'm afraid you'll have to work it out yourself. It's not that hard. Keep track of your current minimum/maximum. Compare your element to that and if it is smaller/greater replace the current value.

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by