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? >