compare the absolute value of each element from two matrices
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jack_111
am 25 Nov. 2014
Kommentiert: Image Analyst
am 25 Nov. 2014
I have two matrices A and B with the size NxM and I want to compare the absolute value of each element for the two matrices and return the bigger value and then to store the real value in a new matrix.
Any suggestions please
Many thanks in advance
3 Kommentare
Image Analyst
am 25 Nov. 2014
OK. Good. Calling it the "real" value instead of the "max" value was a major oversight initially. But now that you've clarified it, it looks like you now have two correct solutions. Thanks for accepting one of them. You can also vote for both of them too, even though you can accept only one.
Akzeptierte Antwort
Guillaume
am 25 Nov. 2014
Bearbeitet: Guillaume
am 25 Nov. 2014
Concatenate A and B along the third dimension, get the second output of max along the 3rd dimension of the absolute of that 3d matrix to get the z index. The tricky bit is then using that z value to select A or B. Summing each matrix multiplied by a logical matrix should do it:
a = [1 -2 -3; 4 5 -6]
b = [3 2 1; 8 9 -3]
ab = cat(3, a, b);
[~, idx] = max(abs(ab), [], 3);
c = a.*(idx==1) + b.*(idx==2)
0 Kommentare
Weitere Antworten (1)
the cyclist
am 25 Nov. 2014
Bearbeitet: the cyclist
am 25 Nov. 2014
absA = abs(A);
absB = abs(B);
I'm not sure what you mean by "compare ... and return the real value". Larger? Smaller? Difference?
2 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!