How to find the maximum value by comparing 2 cells?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Atanu
am 22 Sep. 2022
Kommentiert: Star Strider
am 22 Sep. 2022
I have 2 cells array, for example
A = {2,4,5};
B = {1,10};
How can I find the max value (10, in this case) by comapring cell A and B?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 22 Sep. 2022
This is not as efficient as I would like it to be, however it works —
A = {2,4,5};
B = {1,10};
MaxC = max(cellfun(@(x)max([x{:}]),{A,B}))
.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!