This post describes a few different methods to quantify how "close" two different 2D images/datasets are to each other. We define a 2D datasets in this case to be: z1(x,y) and z2(x,y) This could be an image in a 2d plane or some other 2d dataset. Obviously, first just look at the images and now one would want to quantify their degree of identicalness. 1. Slope of M1 vs M2 Unzip the 2d array of image and plot them in the array (make sure to unzip the same way). Check for: (a) R2 should be close to 1 (b) The slope should be close to 1 (c) The offset should be close to 0 Make sure the errors are correctly defined for each of the three fits and they can be rather independent of each other. 2. Difference plot Plot the difference of the two images on an image to find if there are any blind spots/something funny. If not, also unzip the 2d array and plot it as a series to look for weird outliers and check if each point is within the series. If yes, look ...