I have four matrices with the same dimensions, let's say:
A =
1 2 5
4 2 9
B =
4 5 9
8 0 1
C =
5 3 9
0 4 0
D =
5 9 1
0 9 3
How do I find the maximum value of all corresponding elements in the four matrices? In my example, the result should be as follows:
maxABCD =
5 9 9
8 9 9
Thank you...