figure position with "tiledlayout" function.
Show older comments
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?
Accepted Answer
More Answers (0)
Categories
Find more on Axes Appearance in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!