Clear Filters
Clear Filters

how to display in one variable the max of each one of two arrays?

1 view (last 30 days)
a=[5 10 15]
b=[20 25 30]
c= ?

Accepted Answer

James Tursa
James Tursa on 17 Sep 2016
c = [max(a) max(b)];

More Answers (1)

Star Strider
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

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!