Info
この質問は閉じられています。 編集または回答するには再度開いてください。
get Color/names of a subplot
1 回表示 (過去 30 日間)
古いコメントを表示
A long time ago Azzi Abdelmalek (28 Jul 2014) showed me a way to get the x and y Values of any subplot.Now I need a way to get the "LineColor" and the "names" which I didnt use in this example. (Due to its an example)However, imgaine every PlotPoint has its own name. Can u pls help me ?
% -----Example----------------------
for k = 1:9
x = 1:10;
y = rand(1,1)*20 *x;
z = (rand(1,1)*10).^x;
subplot(3,3,k);
plot(x,z,'--r',x,y,'-b');
end
%------The code-----------------------
h=findobj('type','axes');
for k=1:9
f=get(h(k),'children');
xi{k}=get(f,'xdata')
yi{k}=get(f,'ydata')
end
0 件のコメント
回答 (1 件)
Adam
2014 年 8 月 7 日
You can replace 'xdata' and 'ydata' in that example with any lineseries property (assuming all children of your axes lineseries objects which they would be from a plot instruction). These include 'Color'.
Plots don't have a name though so I'm not sure what you would be looking for in that case. If you want to give them a name then you could store a cell array of strings that you populate in the same loop you create your plots then you can just index into that later on to retrieve the name you assigned to aplot.
3 件のコメント
Adam
2014 年 8 月 7 日
Well assuming you have first put that array of names together then looping around the xdata/ydata you retrieve in your shown example will allow you to index into that array. If it is a nested for loop and your array is just a 1d array as you showed you will have to convert your 2d nested for loop values (one for plot, one for point in the given plot) to the correct 1d index, but that is simple enough.
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!