I am generating a graph through a custom function using DynamicModule:
graph1 = customFunction[a]
If I try to do:
Show[graph1]
I get the message
"DynamicModule is not a type of graphics."
How can I convert the output of my DynamicModule function into a graphic? My ultimate goal is to combine multiple graphics with Show:
graph1 = customFunction[a]
graph2 = customFunction[b]
Show[graph1,graph2]


DynamicModules notManipulates. – Kuba Jul 06 '13 at 10:01DynamicModuleto variable, and thenShowit outsiede, like in the link. Well, I can not guess more without any insight into Your code. – Kuba Jul 06 '13 at 10:27