From: Thethos Hauser on
Hello

I want to plot a region of the world map:

Code:
latlim = [-90 90]; lonlim = [-180 180];
axhandle=axesm('MapProjection','stereo','origin',[90 0],'FLatLimit',latlim,'FLonLimit',lonlim,'Grid','on');
% plot the coastlines
load coast; h=plotm(lat,long);
axis([-1.2 1.2 -1.2 1.2]);

Which worked just fine in Matlab 2009b, but after the update to 2010a, the grid continues beyond the 'axes', which is not very nice...
Is there a way to avoid that?

Thanks Thethos