Re: Values from InterpolatingFunction
- To: mathgroup@smc.vnet.net
- Subject: [mg11856] Re: [mg11847] Values from InterpolatingFunction
- From: jpk@max.mpae.gwdg.de
- Date: Fri, 3 Apr 1998 03:45:19 -0500
> From vd@cascade.de Wed Apr 1 09:31:22 1998 > Date: Wed, 1 Apr 1998 00:35:51 -0500 > From: "Volker Doerr" <vd@cascade.de> To: mathgroup@smc.vnet.net > To: mathgroup@smc.vnet.net > Subject: [mg11856] [mg11847] Values from InterpolatingFunction > > > Hello to all, > > I have the following > > InterpolatingFunction[{{0.,365.}},<>][t] > > produced by Function D from another InterpolatingFunction, and want > simply to get the approximate values at specific points. I cannot find > a direct solution, probably because the function has symbolic form. > > Anybody out there who can help me? > > Thanx a lot, > > V o l k e r > vd@cascade.de > Hi Volker, val=InterpolatingFunction[{{0.,365.}},<>][t] /. t-> 2.0 will work as well as Table[InterpolatingFunction[..][t],{t,0.,100.,1}] or what ever You like to do Hope that helps Jens > >