MathGroup Archive 2001

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

Search the Archive

Re: Urgent Plot problem

  • To: mathgroup at smc.vnet.net
  • Subject: [mg32055] Re: [mg32041] Urgent Plot problem
  • From: BobHanlon at aol.com
  • Date: Fri, 21 Dec 2001 03:57:22 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 12/20/01 4:10:10 AM, deniz.seker at arcelik.com.tr writes:

>I have a problem with Plot. For two different results of equations, I need
>to plot the results in one plot. For example, one domain has a range of
>0-100 in x direction, and the other has a range of 200-1000. How can I
>comb,ne the results in one graph?
>

Needs["Graphics`Graphics`"];
Needs["Graphics`Colors`"];

DisplayTogether[
    Plot[{x, x-50},{x,0,100},PlotStyle\[Rule]{Red,Green}],
    Plot[(500-x)/5,{x,200,1000},PlotStyle->Blue], 
    ImageSize -> 300];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Re: Urgent Plot problem
  • Next by Date: Re: Urgent Plot problem
  • Previous by thread: Re: Urgent Plot problem
  • Next by thread: RE: Urgent Plot problem