Re: How to display parameter in animation?
- To: mathgroup at smc.vnet.net
- Subject: [mg87204] Re: How to display parameter in animation?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Fri, 4 Apr 2008 02:56:46 -0500 (EST)
- Organization: Uni Leipzig
- References: <ft2aum$phc$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
Animate[Plot[Sin[x + a], {x, 0, 10},
Epilog -> {Text[a, Scaled[{0.8, 0.9}]]}], {a, 0, 5}]
??
Regards
Jens
Holobundle wrote:
> How do I display the parameter in an animation?
>
> For example, I would like to see the values of the parameter 'a' in the following example from the mathematica documentation:
>
> Animate[Plot[Sin[x+a],{x,0,10}],{a,0,5}]
>
> In particular, if I pause the animation I would like to see what the value of the parameter is.
>