How can I force a plot of phylogenetic tree to appear as subplot and not as a new figure?
1 次查看(过去 30 天)
显示 更早的评论
I want to add a phylogenetic tree I created to already existing figure as a subplot. However, this doesn't work and it keeps on opening a new figure. Any suggestions? Thank you.
f = figure('units','normalized','outerposition',[0 0 1 1]);
subplot(2,1,1)
plot(x,y)
spd = seqpdist(seqs);
PhyloTree = seqlinkage(spd);
subplot(2,1,2)
plot(PhyloTree)
0 个评论
采纳的回答
Walter Roberson
2018-3-20
Unfortunately the code is hard-wired to create a new figure.
You can assign the output of plot() to a variable and then you can use findobj() or get the children of the returned figure to find the axes, and then you can move the contents of the axes and copy its various settings (except OuterPosition) to the existing axes. However, the plot() call also attaches some information as appdata to the figure, so you might not get correct behavior of the moved information.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Phylogenetic Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!