Adding existing axes objects to a new tiledlayout

88 Ansichten (letzte 30 Tage)
Christoph Schmidt
Christoph Schmidt am 19 Okt. 2020
Kommentiert: Karl_469 am 2 Nov. 2023
I have a cell-array of axes-objects which all have different parents. Now I would like to transfer all those objects to the same tiledlayout. I tried changing their parents one-by-one, but then they all appear in the same tile:
f = figure();
t = tiledlayout(3,3);
for i = 1:9
set(arrayOfAxes{i}, 'Parent', t);
end
I also tried using nexttile() in the for loop, but this didn't help. Is there a way to specify which tile an axes-object belongs to within tiledlayout?
Appreciate you help very much!

Akzeptierte Antwort

Reshma Nerella
Reshma Nerella am 29 Okt. 2020
Bearbeitet: Reshma Nerella am 29 Okt. 2020
Hi Christoph,
set(arrayOfAxes{i}, 'Parent', t); % axes object can not be a child of t(tiledlayout)
Each tile in 'tiledlayout' contains an axes, you can plot directly without creating axes in the layout. Once you plot something, you can use 'nexttile' to plot on the next tile.
In case you want a layout with axes in all the tiles, you can create a grid layout manager, it creates an invisible grid and positions components(like axes) along the rows and columns of the grid.
For more information and examples, refer to the documentation pages tiledlayout, nexttile and uigridlayout
  2 Kommentare
Christoph Schmidt
Christoph Schmidt am 29 Okt. 2020
Thanks a lot for your help!
Karl_469
Karl_469 am 2 Nov. 2023
In case you end up overlaying all figures in one tile, rather then having a tile for each axis/"figure" use
Eric Sargent's approach:
https://ch.mathworks.com/matlabcentral/answers/101806-how-can-i-insert-my-matlab-figure-fig-files-into-multiple-subplots#comment_1195904

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Tim Baur
Tim Baur am 13 Dez. 2021

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by