Dear usegroup,
for the generation of measurement reports I look for a possibility to merge
multiple plots to one.
My plan (not the best one I think..):

I generate a figure in an external functions and  receive a list of figures
like

def make_one_fig():
    thisfig = figure() ...
    plot (..)
    return thisfig
..
onefig = make_one_fig()
figurelist.append(onefig)
..
merge_figurelist_to_one_plot(figurelist)

show()

This does not work and I believe my strategy is bad. Has anybody an idea,
how to merge a list of figures to one plot?
Thanks a lot,
Dirk
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to