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 件のコメント
回答 (1 件)
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 件のコメント
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 Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!