get title of subplot back
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Max Müller
am 8 Aug. 2014
Kommentiert: Max Müller
am 8 Aug. 2014
hey Guys, I have 9subplots in 1 figure and I want to give the User of my program the possibility to click of one subplot and get the title back....
do u have any tips ?
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 8 Aug. 2014
close
x=repmat((1:10)',1,9);
y=rand(10,9);
for k=1:9
subplot(3,3,k);
plot(x(:,k),y(:,k));
title(sprintf('title%d',k))
end
%------The code-----------------------
h=flipud(findobj(gcf,'type','axes'))
%-----get title N°5----------------
n=5
g=get(h(n),'title');
title_5=get(g,'string')
2 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Subplots 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!