MathGroup Archive 1998

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

Search the Archive

Re: Values from InterpolatingFunction



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



  • Prev by Date: Macintosh Mathematica Interface
  • Next by Date: Re: Polygons In Space
  • Prev by thread: Re: Values from InterpolatingFunction
  • Next by thread: RE: Values from InterpolatingFunction