Tagged Questions
8
votes
1answer
93 views
How to catch the “Preemptive” evaluations from within the main loop?
When trying to make an optimized version of my plotRange fonction I faced a problem of catching the "Preemptive" evaluations ...
4
votes
1answer
137 views
Why does Dynamic output cause CPU usage when onscreen?
I write such a line in Mathematica:
{Slider[Dynamic[s]], Dynamic[f[x_] := s*x]}
After evaluation, the CPU immediately runs at full power. And if you scroll the ...
10
votes
2answers
166 views
How can I access a variable in one evaluator from another evaluator?
I have two notebooks, each with a different kernel. Is there a way to grab the value of a variable in KernelA from KernelB?
3
votes
1answer
47 views
How can I kill one evaluator from another?
I have a kernel named A in one notebook and other notebook with kernel B, how can I kill B from A?
11
votes
2answers
212 views
can a ColorFunction have side effects?
Can anyone explain this (to me) odd behavior. If I run this code once (fresh kernel) it works as intended.
...