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 commentaires

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
OCDER le 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
Stephen23 le 10 Nov 2017
Adriana Stanková's "Answer" moved here:
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.

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 8 Nov 2017

0 votes

Y = [y1;y2;y3;y4;y5];
out = max(Y(:));

Cette question est clôturée.

Tags

Clôturé :

le 20 Août 2021

Community Treasure Hunt

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

Start Hunting!

Translated by