Manipulate question
- To: mathgroup at smc.vnet.net
- Subject: [mg93132] Manipulate question
- From: Mark Fisher <particlefilter at gmail.com>
- Date: Tue, 28 Oct 2008 04:53:21 -0500 (EST)
Hi all, In the following Slider code, n is contrained to be greater than or equal to 1: Module[{n=5}, Slider[Dynamic[n, (n = Max[#, 1]) &], {0, 10}] ] I would have thought that in the following Manipulate code, n would again be constrained to be greater than or equal to 1, but it's not. Where is my thinking going wrong? Manipulate[ Dynamic[n, (n = Max[#, 1]) &], {{n, 5}, 0, 10} ] --Mark