Re: Plots with Variable Limits?
- To: mathgroup at smc.vnet.net
- Subject: [mg24148] Re: Plots with Variable Limits?
- From: aram at sirius.com (Aram Schiffman)
- Date: Wed, 28 Jun 2000 02:12:01 -0400 (EDT)
- References: <8j9djn$51e@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
>I want to make a test plot of a function f[x,a] versus x for some >trial value of the parameter a without fixing that parameter for >subsequent cells, e.g. something like > > Plot[ f[r,a], {x,-2a,2a} ] /. a->10 > Dr. Siegman, I assume that "r" was meant to be "x." How about With[{a = 10}, Plot[f[x, a], {x, -2 a, 2 a}]] Aram Schiffman