Re: How do I get a numeric value from FindRoot[] ?
- To: mathgroup at smc.vnet.net
- Subject: [mg120813] Re: How do I get a numeric value from FindRoot[] ?
- From: Glenn Carlson <g.crlsn at gmail.com>
- Date: Thu, 11 Aug 2011 05:12:53 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
In[1]:= sol = FindRoot[x + 9, {x, -5}]
x = x /. sol
x + 2.5
Out[1]:= {x -> -9.}
Out[2]:= -9.
Out[3]:= -6.5
Regards,
Glenn