GrahamSRowe
Bioengineer
- Dec 30, 2010
- 1
I know that you can use the following formulae in Excel to fit a curve using LINEST for the named ranges x and y:
Exponential Trendline
Equation: y = c *e ^(b * x)
c: =EXP(INDEX(LINEST(LN
,x),1,2))
b: =INDEX(LINEST(LN
,x),1)
My question is, if I want to fix c=1 can I simply use
b: =INDEX(LINEST(LN
,x),1) and assume c=1?
Also would it be correct to use
r2: = INDEX(LINEST(LN
,x),TRUE,TRUE),3)
in this case?
Thanks very much.
Exponential Trendline
Equation: y = c *e ^(b * x)
c: =EXP(INDEX(LINEST(LN
b: =INDEX(LINEST(LN
My question is, if I want to fix c=1 can I simply use
b: =INDEX(LINEST(LN
Also would it be correct to use
r2: = INDEX(LINEST(LN
in this case?
Thanks very much.