This question already has an answer here:
- Question about MapThread and Dynamic 2 answers
Dynamic[x=7]; does not make x dynamic! But Dynamic[x=7;] makes x dynamic with initial value 7. The problem with the later is the presence of Null in the output. My question is: how can I assign a (big) value (or a huge list, etc.) to a dynamic variable AND suppress any possible output (including Null)?
DynamicWrapper? – John Fultz Mar 5 at 17:40Dynamic. There's no such thing as a dynamic variable. There's only stuff that shows as the dynamically updated "current" value of an expression, and in the process of calculating that current value, it might update other "non-dynamic" variables – Rojo Mar 5 at 17:58