Re: Interpolating Function
- To: mathgroup at smc.vnet.net
- Subject: [mg74223] Re: Interpolating Function
- From: dh <dh at metrohm.ch>
- Date: Wed, 14 Mar 2007 04:01:11 -0500 (EST)
- References: <et5oik$js9$1@smc.vnet.net>
Hi Amit, what you got: x->InterpolatingFunction[...] is a replacement rule. To get a function from this you may say: fun= x /. x->InterpolatingFunction[...] and a function value you get from e.g. fun[3.] Daniel amitsoni.1984 at gmail.com wrote: > Hi, > > I used NDSolve to solve an ODE(f = NDSolve[.....] ) and got the result > as an Interpolating function x->InterpolatingFunction[...]. It just > gives the range of solution x. How can I plot or get the values of > solution x? > > Thank you, > Amit > >