How to do max value
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comments
Kaushik Lakshminarasimhan
on 8 Nov 2017
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
on 8 Nov 2017
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
on 10 Nov 2017
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.
Answers (1)
Andrei Bobrov
on 8 Nov 2017
Y = [y1;y2;y3;y4;y5];
out = max(Y(:));
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!