how to display in one variable the max of each one of two arrays?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MIGUEL HERNANDEZ
el 17 de Sept. de 2016
Respondida: Star Strider
el 17 de Sept. de 2016
a=[5 10 15]
b=[20 25 30]
c= ?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Star Strider
el 17 de Sept. de 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 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!