Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
a=[5 10 15]
b=[20 25 30]
c= ?

Risposta accettata

James Tursa
James Tursa il 17 Set 2016
c = [max(a) max(b)];

Più risposte (1)

Star Strider
Star Strider il 17 Set 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

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by