Comparing 2 Matrices Element By Element
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Mischa Kim
le 24 Jan 2014
Use the max function. Try:
A = rand(3);
B = rand(3);
C = max(A,B)
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!