how to select a set which has a highest value when compared with other sets

1 visualización (últimos 30 días)
If we have 4 sets as shown below
A = [ 23 45 67 89 36]
B= [ 32 56 44 47 33 66]
C= [ 12 45 76 99 50 76]
D= [ 19 67 89 37 19 36]
I have to select that set which has the highest value
From the above sets set C has the highest value among all other values which is 99
Then my required set is C.
Can I get a code for selecting such kind of set for different values?
thanks

Respuestas (1)

Stephen23
Stephen23 el 24 de Oct. de 2019
>> Z = {[23,45,67,89,36],[32,56,44,47,33,66],[12,45,76,99,50,76],[19,67,89,37,19,36]};
>> [~,X] = max(cellfun(@max,Z));
>> V = Z{X}
V =
12 45 76 99 50 76

Categorías

Más información sobre NaNs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by