I have the following exercise.
Check if the following matrix is symmetrical. Knowing that a matrix iff A[i][j]==A[j][i] for all positions the matrix is symmetric. A[4][4] = {1, 0, 1, 1, 0, 4, 0, 0, 1, 0, 3, 0, 1, 0, 1, 3};
I do understand how to prove the symmetry using C but I have trouble when implementing it in MIPS, since I do not understand how to translate the idea of A [i] [j] == A [j] [i] using just addresses. The problem is that I can not identify the pattern that address follow when interchanging of [i] [j] to [j] [i] .