MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: newbie: can't Manipulate ListPlot of recurrence

  • To: mathgroup at smc.vnet.net
  • Subject: [mg96781] Re: newbie: can't Manipulate ListPlot of recurrence
  • From: Tom Roche <tlroche at gmail.com>
  • Date: Wed, 25 Feb 2009 04:00:28 -0500 (EST)
  • References: <go0j40$n0f$1@smc.vnet.net>

Tom Roche Feb 24, 5:45 am
>> summary: I'm trying to Manipulate the logistic map. I can ListPlot
>> it, but when I try to Manipulate, the UI behaves weirdly.

Daniel H Tue, Feb 24, 2009 at 6:58 AM
> you can not use y for two things, table-generator and
> Manupulate-variable. Here is the corrected version:

> Manipulate[
>  ListPlot[(y = y0; Table[y = a y (1 - y), {50}]),
>  Joined -> True], {{a, 3.5}, 0, 4}, {{y0, 0.4}, 0, 1}]

Thanks! that works.


  • Prev by Date: Re: Re: Exporting data into a file, OpenWrite
  • Next by Date: Creating TOC with Mathematica 7
  • Previous by thread: newbie: can't Manipulate ListPlot of recurrence
  • Next by thread: Re: newbie: can't Manipulate ListPlot of recurrence