figure position with "tiledlayout" function.
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Axes Appearance in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
