MathGroup Archive 2006

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

Search the Archive

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


  • Prev by Date: Re: Fourier Transform Bug
  • Next by Date: Question - Function Definition
  • Previous by thread: Re: Moving an outsider to the closest point on the boundary
  • Next by thread: Re: Getting the value of the independent var from the dep.var using NDSolve