Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
sampath kumar punna
sampath kumar punna le 24 Oct 2019
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

Réponses (1)

Stephen23
Stephen23 le 24 Oct 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

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by