How can I minimize the outer space for the figure or plot
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponses (1)
G A
le 4 Avr 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)
Voir également
Catégories
En savoir plus sur Data Exploration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!