I need to divide each row in a 50x50 array by the first value in each row in order to normalize the rows of my array by the first value of each row. So for instance if I have an array of:
[A1,A2,A3];
[B1,B2,B3];
[C1,C2,C3]
I would need to divide all values in the A-Row by A1, all values in B-Row by B1, and all values in C-Row by C1.