how to select a set which has a highest value when compared with other sets
2 views (last 30 days)
Show older comments
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
0 Comments
Answers (1)
Stephen23
on 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
0 Comments
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!