how to display in one variable the max of each one of two arrays?
1 view (last 30 days)
Show older comments
MIGUEL HERNANDEZ
on 17 Sep 2016
Answered: Star Strider
on 17 Sep 2016
a=[5 10 15]
b=[20 25 30]
c= ?
0 Comments
Accepted Answer
More Answers (1)
Star Strider
on 17 Sep 2016
Concatenate the vectors inside the max function call:
a = [5 10 15];
b = [20 25 30];
c = max([a; b], [], 2)
c =
15
30
0 Comments
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!