MathGroup Archive 2001

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

Search the Archive

Re: Re: Creating graph with only a view data points

  • To: mathgroup at smc.vnet.net
  • Subject: [mg28934] Re: [mg28905] Re: Creating graph with only a view data points
  • From: BobHanlon at aol.com
  • Date: Sat, 19 May 2001 22:27:52 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Needs["Graphics`Graphics`"];
data1 = {{0,0},{1,0.5},{2,0.5},{3,0.5}};
data2 = {{3,0.5}, {2.1,1.5},{1,5}};
ip1 = Interpolation[data1];
ip2 = Interpolation[data2];
DisplayTogether[Plot[ip1[u], {u, 0, 3}], Plot[ip2[u], {u, 1, 3}], 
    PlotRange -> All];

Bob Hanlon

In a message dated 2001/5/18 2:10:08 AM, nospam at newsranger.com writes:

>First of all thanks for your help.
>I'm sorry, but your solution don't work in my case.
>It could happen, that I have to go back on the x and y axis.
>For example:
>
>{{0,0},{1,0.5},{2,0.5},{3,0.5},{2.1,1.5},{1,5}}
>
>Mathematica isn't realy happy with that.
>
>Do you, or anybody else, have a solution for that?
>


  • Prev by Date: Greek fonts from graph saved as EPS are not there.
  • Next by Date: Hiding data in Cells?
  • Previous by thread: Re: Creating graph with only a view data points
  • Next by thread: Re: Re: Creating graph with only a view data points