0
votes
1answer
136 views

Matplotlib multiProcessing

I am trying to make it so that I can run an infinite loop asking for user input as well as running a matplotlib simple diagram. Any suggestions how this can work? Currently I have for my code: def ...
1
vote
1answer
576 views

matplotlib and python multithread / multiprocessing file processing

I have a large number of files to process. I have written a script that get, sort and plot the datas I want. So far, so good. I have tested it and it gives the desired result. Then I wanted to do ...
0
votes
1answer
610 views

Python Threading, MatPlotLib, and loops

I have a repeated graphing call inside of a loop. Because the backend needs to continue running, I have split the graphing off into another thread (using interactive mode locks up the graph, since the ...
4
votes
3answers
5k views

Matplotlib: simultaneous plotting in multiple threads

I am trying to do some plotting in parallel to finish large batch jobs quicker. To this end, I start a thread for each plot I plan on making. I had hoped that each thread would finish its plotting ...