How to continue python script execution when displaying a graph / drawing?

Possible duplicate:
Is there a way to detach the matplotlib plots so that the calculation can continue?

I am using python with matplotlib for scientific programming. But whenever I use a command show()to display a graph, the script just stops. I need to close the drawing window for the script in order to continue execution. Is there a way to keep the script running while the shape window is open, as in Matlab?

+5
source share
1 answer

, , script , show , , . show , script . threading python.

+4

All Articles