Is there a way to DumpSave all the variables in the notebook? Or better whole notebook so that opening it would restore all the definitions.
Asked
Active
Viewed 1,253 times
1 Answers
1
Definition of a variable in a context is done by
myContext`a=100;
!! Typing "a" later will not give 100!! To call the content defined above you need to specifiy the context other wise it is assumed Global`. So use myContext`a to get 100.
Do this with all the needed variables in the notebook.
You can use DumpSave["file","myContext`"] to save all the definitions at once.
-
Does that mean that in principle all the global variables can be saved by
DumpSave["file","Global"]`? – Al Guy Sep 02 '15 at 02:06 -
I was not sure if Global
context is far more than your defined variables. I just tried ?Global* and indeed I only get my defined variables/functions and not some genereal Mathematica definitions. – Eisbär Sep 02 '15 at 08:05
DumpSave. – Oleksandr R. Sep 01 '15 at 00:39