Re: Automatic Notebook Evaluation
- To: mathgroup at smc.vnet.net
- Subject: [mg73503] Re: Automatic Notebook Evaluation
- From: "Sebastian Meznaric" <meznaric at gmail.com>
- Date: Tue, 20 Feb 2007 06:21:42 -0500 (EST)
- References: <er9cma$d7f$1@smc.vnet.net>
On Feb 18, 3:18 am, Robert L Rauck <rau... at gmail.com> wrote: > This is a newbie question. I would like to be able to update the data input to a Mathematica 5.2 notebook and have the entire set of notebook calculations update automatically. I expect to find this option in the Options Inspector > Notebook Options > Evaluation but I don't see it and I have had little luck finding help on the subject. Thanks in advance for any help. If you need to update your calculations after updating the data, you might want to use delayed set rather than normal set (ie when assigning expressions to variables use := instead of = ). This works because in this case each variable gets evaluated when you call it. If you use "=" then each variable gets evaluated immediately when you set the value and so it doesn't matter what you later do with other variables on which you want this one to depend.