Hi, I have a project where in I have to compare 2 matrices. Both of them are 3×5 matrix. Can you please help me read the below pseudo code?

Hi,
I have a project where in I have to compare 2 matrices. Both of them are 3×5 matrix. Can you please help me read the below pseudo code?
minVal :=0;
for i := 1 to I do{                                // go through rows
           for j := 1 to J{                         // go through column J
                       for k = 1 to K             // iterate through column K and compute D[j][k]
                                   if X[I][J] = Y[I][K]