Your question is not very clear.
It seems that you have two 2D arrays, that you don't need to compare to each other. You just need to compare elements in each dimension on each of those arrays separately.
You will pass the 2D array to a For loop. The loop will run that many number of times as is the number of rows in the array. So in each loop iteration you will check the values in the array rows, lets says these are y values. Put another For loop inside and compare the y elemnts inside the inner loop. Now, I am not sure what you mean by "shift the array" Do you want to shift the entire row one row up if you find an element in that row that is greater than .95, or down if it is less than .95? If so, then use the While loop instead, as the inner loop, and as so
on as you find an element not equal to .95, exit the while loop and shift the row. To shift the rows/collumns, you can use delete/insert array element VIs.
I hope this helps.
Zvezdana S.