figure position with "tiledlayout" function.
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Axes Appearance en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
