|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
LocalizeVariables
LocalizeVariables
is an option to Manipulate that determines whether the values of variables associated with controls should be localized.
DetailsDetails
- With the default setting LocalizeVariables->True, DynamicModule is used to localize variables to each displayed instance of the Manipulate expression.
- With LocalizeVariables->False, the variables are treated as global, and can be set and accessed outside the Manipulate expression.
ExamplesExamplesopen allclose all
Basic Examples (2)Basic Examples (2)
By default, Manipulate variables are localized:
| In[1]:= |
| Out[1]= | ![]() |
By disabling LocalizeVariables, the variables are treated as global:
| In[1]:= |
| Out[1]= | ![]() |
New in 6
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »


