Multiple plots in uitab/uitabgroup
Afficher commentaires plus anciens
Suppose I have a uitabgroup with multiple uitabs. In each tab, a plot of some analyzed data is shown. How do I code the uitabgroup or each uitab so that, when the analyzed data is changed, the old graph REMAINS in the uitab to be plotted against. I am operating inside of a while loop. I've tried the 'hold on' function many different ways but to no avail
My code looks something like shown below. I'd paste the code directly but it is far too long. No other functionality than what is shown has been applied. Thanks in advance
h_figure_1 = figure(1);
h_tabgroup = uitabgroup(h_figure_1);
tab1 = uitab(h_tabgroup,'Title','y relative to z');
tab2 = uitab(h_tabgroup,'Title','y relative to z and n');
start =1;
while start == 1
% Ask user to upload data for z and n, given x and y
axes('parent',tab1)
plot(x,y/z)
axes('parent',tab2)
subplot(2,1,1)
plot(x,y/(z+n))
subplot(2,1,2)
plot(x,y/n)
start = input('Run again? 1 - yes, 0 - no');
end
Réponse acceptée
Plus de réponses (1)
Mehmed Saad
le 24 Juin 2020
Modifié(e) : Mehmed Saad
le 24 Juin 2020
The Dumb Way
I found another way to do that (maybe it's not that efficient)
Basically subplot will plot all data on figure which is behind the tab. once it completed plotting just copy objects from figure
(once you are finished with a subplot, the property NextPlot must be set to replace and not add that is why hold off is necessary)
fh= figure;
utb = uitabgroup(fh);
for ii = 1:2
f = uitab(utb,'Title',sprintf('Tab %d',ii));
subplot(221)
plot(rand(1,10))
hold on;
plot(rand(1,10))
hold off; % necessary
subplot(222)
plot(rand(1,10))
hold on;
plot(rand(1,10))
hold off;% necessary
subplot(223)
plot(rand(1,10))
subplot(224)
plot(rand(1,10))
copyobj(fh.Children(2:end),f) %Copy subplots from figure to tab
end
delete(fh.Children(2:end)) % delete subplots from figure
Catégories
En savoir plus sur Graphics Performance 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!