How can I minimize the outer space for the figure or plot

19 views (last 30 days)
Hello.
I have been using the syntax like
rek = tiledlayout(2,2);
rek.Padding = 'none';
rek.TileSpacing = 'none';
for multi figure layout to make my figure no space between tiles.
Is there any syntax that can be applied for 1 figure plot?
Like the figure above, there are so much spaces so that I should
always cut the figure after export.
If it has syntax applied when I make the plot with no space like Tilespacing,
It will be better.
Thank you.

Answers (1)

G A
G A on 4 Apr 2021
You can do as follows:
x=-2*pi:0.1:2*pi;
y=sin(x);
figure(1)
ax=gca;
ax.Position=[0.075 0.075 0.9 0.9]; % default position is [0.13 0.11 0.775 0.815]
plot(x,y)

Community Treasure Hunt

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

Start Hunting!