Re: Getting the value of the independent var from the dep.var using NDSolve
- To: mathgroup at smc.vnet.net
- Subject: [mg63690] Re: Getting the value of the independent var from the dep.var using NDSolve
- From: "irchans" <infinitgames at yahoo.com>
- Date: Tue, 10 Jan 2006 01:48:44 -0500 (EST)
- References: <dptd4r$be$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
How about myy[t_] = y[t] /. NDSolve[ {y'[t] == t, y[0] == 0}, y[t], {t, 0, 5}][[1]]; FindRoot[ myy[t] == 8, {t, 2}]