Plot on different tile during a loop
Afficher commentaires plus anciens
Hi all-
If we are talking about plotting on different figure, I would just call the figure() command an input argument:
>> figure(1)
>> plot(1:10)
>> figure(2)
>> plot(2:11)
Any clue how could I do that in tiledlayout?
For example, I will have:
tiledlayout(2,2)
nexttile; % tile 1
plot(x,y1)
nexttile; % tile 2
plot(x,y2)
nexttile([1 2]); % tile 3
plot(x,y3)
Now I wish to go back to tile 1 and plot new stuff on it, is there anyway to do that? I have searched around but doesnt seem to have a solution out there.
Any help would be greatly appreaciated!
Réponse acceptée
Plus de réponses (1)
Hrishikesh Borate
le 20 Nov 2020
Hi,
I understand that you want to access a previous tile in a tiled layout and plot a graph at that tile. The syntax to access a particular tile is :-
nexttile(tile_location);
Following is the code when you want to go to first tile and plot a graph on top of existing plot.
nexttile(1)
hold on
plot(x, y);
hold off
Following is the code when you want to go to first tile and replace the previous plot / plot a new plot.
nexttile(1)
plot(x, y);
Catégories
En savoir plus sur Axes Appearance dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!