Re: Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg86240] Re: Manipulate
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Thu, 6 Mar 2008 03:02:51 -0500 (EST)
- References: <fqlmn4$jcj$1@smc.vnet.net>
Hi,
you create an infinite loop, append in every cycle
a value to your list and wondering what goes wrong ?
Try
lst = {};
Manipulate[lst = Union[lst, {value}];
Dynamic@ value, {value, 1, 10, 1}]
regards
Jens
N K wrote:
> Hi,
> I just have started using Mathematica and was working on the Manipulate function. I have the following piece of code:
>
>
> Manipulate[
> Print[value],
> {value, 1, 10, 1, ControlType -> Animator}
> ]
> which seems to work just fine. However, if I add the following line to it, it does not quite work.
>
>
> lst = {};
> Manipulate[
> lst = Append[lst, value];
> Print[value],
> {value, 1, 10, 1, ControlType -> Animator}
> ]
>
>
> The values that are being printed for "value" are really weird and incorrect.
> Any suggestions on what I have done wrong?
>
>
> Thanks very much,
>
>