figure position with "tiledlayout" function.
Afficher commentaires plus anciens
tiledlayout(2,2);
[X,Y,Z] = peaks(20);
% Tile 1
nexttile
surf(X,Y,Z)
% Tile 2
nexttile
contour(X,Y,Z)
% Tile 3
nexttile
imagesc(Z)
% Tile 4
nexttile
plot3(X,Y,Z)
Is there any position funtion like "fig1.Position = [0 400 1500 1000];" (ex. fig1=figure(1000)) with tiledlayout so that I can see this in full screen and whenever I save automatically I can see all the detailed clearly?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Axes Appearance dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
