MathGroup Archive 2005

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

Search the Archive

Re: plots with variation of arbitrary constant

  • To: mathgroup at smc.vnet.net
  • Subject: [mg60374] Re: plots with variation of arbitrary constant
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Wed, 14 Sep 2005 03:27:49 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

On 9/13/05 at 6:06 AM, mathma18 at hotmail.com (Narasimham) wrote:

>How to show 2D plots for chosen range of a constant?
>Show[Plot[Sin[x]+ c,{x,0,Pi}],{c,1,10,1}] does not work.

True, but

In[1]:=
Show[Block[
    {$DisplayFunction = Identity}, 
    Plot[Sin[x] + #, {x, 0, Pi}]&/@Range[10]]];

works just fine
--
To reply via email subtract one hundred and four


  • Prev by Date: Re: plots with variation of arbitrary constant
  • Next by Date: Re: plots with variation of arbitrary constant
  • Previous by thread: Re: plots with variation of arbitrary constant
  • Next by thread: Re: plots with variation of arbitrary constant