Re: Manipulate[Plot[Evaluate[expr]]]
- To: mathgroup at smc.vnet.net
- Subject: [mg125690] Re: Manipulate[Plot[Evaluate[expr]]]
- From: Tomas Garza <tgarza10 at msn.com>
- Date: Thu, 29 Mar 2012 02:57:51 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jku7s6$8jl$1@smc.vnet.net>,<201203281000.FAA11142@smc.vnet.net>
Right, and you might also use the Option PlotRange -> {{0, 50}, {0, 0.01}} to avoid the jumping as you move the sliders. -Tomas > Date: Wed, 28 Mar 2012 05:00:05 -0500 > From: roby.nowak at gmail.com > Subject: Re: Manipulate[Plot[Evaluate[expr]]] > To: mathgroup at smc.vnet.net > > On 28 Mrz., 07:33, leigh pascoe <le... at evry.inserm.fr> wrote: > > Could someone please help me with the syntax of a dynamic plot? > > > > I would like to plot a function with 3 constants, for various values of > > the constants (M, t and f say) and for the variable x going from zero to > > 50. I have been unable to find the correct syntax for the > > Manipulate/Plot command. Here is one attempt that shows the function to > > be evaluated and the 3 constants > > > > Manipulate[ > > Plot[M/\[Tau] \[Phi]^M E^(-(x/\[Tau])) (1 - E^(-(x/\[Tau])))^( > > M - 1), {x, 0, 50}], {{M, 1, 12, 1}, {\[Tau], 3, 15, > > 1}, {\[Phi], .5, .8, .1}}] > > > > Any suggestions would be appreciated. > > > > LP > > just a pair of braces { } too much. > > Manipulate[ > Plot[M/\[Tau] \[Phi]^M E^(-(x/\[Tau])) (1 - E^(-(x/\[Tau])))^(M - 1), > {x, 0, 50}], > {M, 1, 12, 1}, {\[Tau], 3, 15, 1}, {\[Phi], .5, .8, .1} > ] > > > Robert >
- References:
- Re: Manipulate[Plot[Evaluate[expr]]]
- From: roby <roby.nowak@gmail.com>
- Re: Manipulate[Plot[Evaluate[expr]]]