Tagged Questions
2
votes
1answer
130 views
Progress indicator with shared variables
I'm trying to create a custom progress indicator for a parallelized computation, using Dynamic and SetSharedVariables to display ...
13
votes
3answers
577 views
Monitor doesn't work with ParallelTable
I can't monitor ParallelTable:
Monitor[ParallelTable[Pause[3]; i, {i, 1, 10}], i]
just displays i until it is finished.
Do ...