Extract parameters from FIndFit output
- To: mathgroup at smc.vnet.net
- Subject: [mg107389] Extract parameters from FIndFit output
- From: Frank Letkiewicz <fjl3rd at mac.com>
- Date: Thu, 11 Feb 2010 05:20:29 -0500 (EST)
Is it possible to extract the parameter values generated from FindFIt to
use in other operations?
For example:
xvalues = {3, 5, 12, 47, 81, 112, 129, 186};
yvalues = {0.05, 0.10, 0.25, 0.50, 0.75, 0.90, 0.95, 0.99};
data = Partition[Riffle[xvalues, yvalues], 2];
fitLogNormal = FindFit[data, CDF[LogNormalDistribution[=CE=BC, =CF=83],
x], {=CE=BC, =CF=83}, x]
Out[396]= {=CE=BC -> 3.47733, =CF=83 -> 1.19773}
Can I extract these =CE=BC and =CF=83 values in the output as regular
numbers?
Frank L.