Re: How to get range of InterpolatingFunction ?
- To: mathgroup at smc.vnet.net
- Subject: [mg64025] Re: [mg64017] How to get range of InterpolatingFunction ?
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sat, 28 Jan 2006 02:23:37 -0500 (EST)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
solution = NDSolve[{Derivative[1][y][x] == y[x],
y[1] == 2}, y, {x, 0, 3}];
solution[[1,1,2,1,1]]
{0.,3.}
Bob Hanlon
>
> From: kowald at molgen.mpg.de
To: mathgroup at smc.vnet.net
> Subject: [mg64025] [mg64017] How to get range of InterpolatingFunction ?
>
> Hello everybody,
>
> I wonder how I can find out the range for which an
> InterpolatingFunction object is valid ?
> If I have {{y -> InterpolatingFunction[{{0., 3.}}, <>]}} , how can I
> extract the 0 and the 3 ??
>
> Many thanks,
>
> Axel
>
>