How to tighten the space of a worldmap plot

조회 수: 2 (최근 30일)
Meir Zeilig Hess
Meir Zeilig Hess 2022년 3월 20일
편집: Meir Zeilig Hess 2022년 3월 22일
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.

답변 (1개)

Burhan Burak AKMAN
Burhan Burak AKMAN 2022년 3월 20일
I think, you would try this code;
xlim([-20000000 20000000])
ylim([-10000000 10000000])
  댓글 수: 1
Meir Zeilig Hess
Meir Zeilig Hess 2022년 3월 20일
Sorry, it didn't have any effect on my plot.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by