MathGroup Archive 2001

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

Search the Archive

Re: Plot-Function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg31170] Re: [mg31158] Plot-Function
  • From: Ken Levasseur <Kenneth_Levasseur at uml.edu>
  • Date: Tue, 16 Oct 2001 01:18:45 -0400 (EDT)
  • References: <200110140811.EAA02398@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Mathias:

This will do what you want:

In[2]:=
p1 = Plot[x^2, {x, 0, 3}, DisplayFunction -> Identity]

In[3]:=
p2 = Plot[Sqrt[27*x], {x, 3, 6}, DisplayFunction -> Identity]

In[4]:=
Show[{p1, p2}, DisplayFunction -> $DisplayFunction]


Ken Levasseur
Math Sci.
UMass Lowell

M. Kohler wrote:

>Hi,
>
>
>in Mathematica, 
>I've got two functions (f1 and f2).
>
>
>Is it possible to plot the first function (f1) from x = 0 to 3 and the second 
>one from x = 3 to 6 in _one_ Graphic?
>
>
>Thanks for answering.
>Mathias
>




  • Prev by Date: Re: Plotting unfilled bars in GeneralizedBarChart
  • Next by Date: Re: Plotting unfilled bars in GeneralizedBarChart
  • Previous by thread: Plot-Function
  • Next by thread: Re: Plot-Function