How to tighten the space of a worldmap plot
2 次查看(过去 30 天)
显示 更早的评论
I am trying to plot a geophysical variable on a sphere, using the following code:
[lat_grid,lon_grid] = meshgrid(Y,X); % Creating the grid from the vectors of latitude and longitude
load coast;
worldmap('World');
setm(gca,'Origin',[0 180]);
geoshow(lat,long);
pcolorm(lat_grid,lon_grid,Var); % plotting the geophysical variable "Var"
colormap('jet');
In the plot I get there is a lot of unnecessary space between the axes and the figure's frame:
I tried to remove space by using:
axis tight;
and then by using:
ax = gca;
ax.Position = [0.0, 0.0, 1.0, 1.0];
but there is still a lot of unwanted space between the actual plot and the figure's frame.
I would like to know how to minimize that space.
Thanks in advance,
Meir.
0 个评论
回答(1 个)
Burhan Burak AKMAN
2022-3-20
I think, you would try this code;
xlim([-20000000 20000000])
ylim([-10000000 10000000])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!