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

1 vue (au cours des 30 derniers jours)
a=[5 10 15]
b=[20 25 30]
c= ?

Réponse acceptée

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

Plus de réponses (1)

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

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by