Re: merging existing .fig into the same figure
"Ziv" wrote in message <ht6tlk$k4t$1@fred.mathworks.com>...> Hi,> I have two figures e.g. gugu.fig and lulu.fig )> i want to place tham one next to the other and create gugululu.fig plot...
View ArticleRe: merging existing .fig into the same figure
I just created an account to thank for this solution: Thank you. "Matt Fig" wrote in message <htbj8f$7kv$1@fred.mathworks.com>...> I don't know why I didn't think of it before, but this should...
View ArticleRe: merging existing .fig into the same figure
Hi Matt, This works great! thank you. One little question is that how to show both figure legend? Thanks, Yen "Matt Fig" wrote in message <htbj8f$7kv$1@fred.mathworks.com>...> I don't know why...
View ArticleRe: merging existing .fig into the same figure
> I have two figures e.g. gugu.fig and lulu.fig )> i want to place tham one next to the other and create gugululu.fig plot where gugu is on the right and lulu is on the left. The previous answers...
View ArticleRe: merging existing .fig into the same figure
Ziv wrote:> how does [T{:}]' interperted? Equivalent code: temp = [] for K = 1 : numel(T)Â Â Â temp = [temp T{K}]; end temp = temp '; It is, in other words, the same as writing [T{1} T{2} T{3} ......
View ArticleRe: merging existing .fig into the same figure
"Ziv " <ziv.yekutieli@hotmail.com> wrote in message <hte781$oo5$1@fred.mathworks.com>...> Hi, if you already took the time to write this code, i'd appreciate the opportunity to learn...
View ArticleRe: merging existing .fig into the same figure
Hi, if you already took the time to write this code, i'd appreciate the opportunity to learn from you since you seem to know your way around Matlab very well. can you please explain the line:...
View ArticleRe: merging existing .fig into the same figure
Hi, thanks again for the prompt response, now it looks a lot better and i think by this progress i have much better understanding of how these "families" should be handled ) so any gaps will be fixed...
View ArticleRe: merging existing .fig into the same figure
I don't know why I didn't think of it before, but this should completely copy everything: % Open old figures. gu = open('gugu.fig'); gu_ax = gca; lu = open('lulu.fig'); lu_ax = gca; F = figure; % New...
View ArticleRe: merging existing .fig into the same figure
What do you mean, "If the axes in lulu and gugu are not the same"? Are you talking about their limits or their labels or their colors or their grid status or what? If you are talking about something...
View ArticleRe: merging existing .fig into the same figure
"Matt Fig" <spamanon@yahoo.com> wrote in message <ht9e40$5p4$1@fred.mathworks.com>...> This should work. You will get more than one child if there is more than one thing plotted or an...
View ArticleRe: merging existing .fig into the same figure
This should work. You will get more than one child if there is more than one thing plotted or an annotation, etc. gu = open('gugu.fig'); gu_ax = gca; lu = open('lulu.fig'); lu_ax = gca; figure; % The...
View ArticleRe: merging existing .fig into the same figure
"Yi Cao" <y.cao@cranfield.ac.uk> wrote in message <ht6v4h$mt2$1@fred.mathworks.com>...> "Ziv " <ziv.yekutieli@hotmail.com> wrote in message...
View ArticleRe: merging existing .fig into the same figure
"Ziv " <ziv.yekutieli@hotmail.com> wrote in message <ht6tlk$k4t$1@fred.mathworks.com>...> Hi,> I have two figures e.g. gugu.fig and lulu.fig )> i want to place tham one next to the...
View Articlemerging existing .fig into the same figure
Hi, I have two figures e.g. gugu.fig and lulu.fig ) i want to place tham one next to the other and create gugululu.fig plot where gugu is on the right and lulu is on the left. can i call gugu and lulu...
View Article