i have two matrix.
A=[e f g h i];
B=[j k l m n];
E=max(A-B);
now what i need to do is find the elements of corresponding matrix that makes the biggest difference. then subtract this element of A from element of B and then divide the result with element of A. what should be the code in MATLAB?