Comparing 2 Matrices Element By Element
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kiran
el 24 de En. de 2014
Comentada: Kiran
el 24 de En. de 2014
I have 2 matrices A and B, both 7x3. I want to compare each element in A with its corresponding element in B, taking the larger of the 2 values and creating a new Matrix C. Could someone suggest a method on how I would do this? I have seen examples of comparing to find equality between 2 elements but not a comparison to create a new matrix so I am finding this rather difficult.
Thanks in advanced.
0 comentarios
Respuesta aceptada
Mischa Kim
el 24 de En. de 2014
Use the max function. Try:
A = rand(3);
B = rand(3);
C = max(A,B)
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!