How to do max value
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
Hi, can you help me ? I have y1, y2, y3, y4 and y5. All of them are 2x70 double. And I need to find max y from them.
3 个评论
Kaushik Lakshminarasimhan
2017-11-8
You have five matrices. Can you clarify what you mean by max y? Do you want to find the maximum element in each of the five matrices?
OCDER
2017-11-8
To add on, do you want to find the maximum per row or col or overall?
A = [1 2; 3 4];
max(A, 1) % 3,4
max(A, 2) % 2;4
max(A(:)) % 4
Stephen23
2017-11-10
Thank for your answers. Overall. I need to find y, which has the highest values than other y. Answer have to be matrice, one from y1, y2, y3, y4 and y5.
回答(1 个)
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!