Thank you Kelly. What I did was this:
lat = flipud(load('Grid')) %LATITUDE
lon = load('Grid')
[LAT LON] = meshgrid(lat,lon);
Where LAT and LON are both 51X51 matrices, except LAT is flipped. I wish to now just plot points, such that cell (1,1) of lat plots with cell (1,1) of LON, and so on. Do you have an idea about where to start?
Thank you.