Вы можете получить края сетки, используя MESHGRAT , которая называется meshm
, когда она создает сетку для биннинга.
%# create the mesh that is used by meshm
[latgrat,longrat] = meshgrat(m,termaplegend);
%# find the latitudes of the center points
latPts = (latgrat(1:end-1,1:end-1) + latgrat(2:end,1:end-1))/2;
%# find the longitudes of the center points
lonPts = (longrat(1:end-1,1:end-1) + longrat(1:end-1,2:end))/2;
Центркорзина во 2-м ряду, 5-й столбец - [latPts(2,5),lonPts(2,5)]
.