From: Virendra on
HI,
After using m_map for a while, I am turning to the matlab supported mapping toolbox. Below is a code I used and for some reason the projected globes do not occupy the entire subplot box. Is there any way for the projections to occupy the entire subplot box, to minimize the white space around?
Thanks


load coast;
figure()
subplot(2,1,1,'align')
axesm('mapprojection','robinson')
surfm(lat2,lon2,netsw_sfc);
colorbar;
caxis([-250 250])
hold on
plotm(lat,long,'k')
subplot(2,1,2,'align')
axesm('mapprojection','robinson')
surfm(lat2,lon2,netlw_sfc);
caxis([-250 250])
colorbar;
hold on
plotm(lat,long,'k')