Re: Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg102335] Re: [mg102323] Manipulate
- From: "David Park" <djmpark at comcast.net>
- Date: Thu, 6 Aug 2009 06:29:16 -0400 (EDT)
- References: <18986394.1249465855917.JavaMail.root@n11>
Look up the LocalizeVariables option. David Park djmpark at comcast.net http://home.comcast.net/~djmpark/ From: Youness Eaidgah [mailto:y.eaidgah at gmail.com] Dear all, I am want to use =93Manipulate=94 to find the most interesting values of a number of variables. For example (it is just an example. They real function is much more complex): F[n_,m_,x_]:=x^n+m; Manipulate[Plot[F[n,m,x],{x,0,10}],{n,0,5},{m,0,9}] This Manipulate gives me a plot with two sliders, one for =93n=94 and one of =93m=94. Is it possible to export the value of =93n=94 and =93m=94 from manipulate interactive plot to the rest of program. Let=92s say, at the following of program, I have a line like this: j=n+m I want to use the values of "n" and "m" form manipulate here. So, once I change the value of =93n=94 or =93m=94 through their sliders, the value of =93j=94 needs to be updated. Is it ever possible? Thank you for being helpful. All the bests, Youness