Comparing 2 Matrices Element By Element
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Mischa Kim
am 24 Jan. 2014
Use the max function. Try:
A = rand(3);
B = rand(3);
C = max(A,B)
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!