I'm looking for a formula to fit a set of data to a so called "five
parameter logistic" curve. I've already done this using a four
parameter logistic using
the following formula:
A - D
y = ( ------------- ) + D
1 + (x/C)^B
...And now I'm urgently looking for the 5 param. version.
Thanks,
Joerg
so what is the fundamental difference?
you will use a nonlinear least squares estimator anyway.
see
http://plato.la.asu.edu/topics/problems/nlolsq.html
hth
peter
If you expect your data to follow the functional form exactly, it
seems you have a set of nonlinear equations to solve. If your data has
noise, you have a nonlinear least squares problem. There exists
software for both types of problems.
Peter,
many thanks for the link :-)
I will look through the sw to find an appropriate fit. I guess the
Levenberg Marq. 'method' would be the best to go for.
Thanks, Joerg
The only five parameter logistic that I have seen raises the entire
denominator to a power to give an asymmetric sigmoidal curve. When that
power is one, then it reduces to the four parameter model.
As far as I know, it is a pragmatic way to remove symmetry from the
curve that has no physical interpretation.
Jerry
The desired 5PL (required in my special case) is:
A - D
y = D + -------------------------------------
[ 1 + ( x / C )^B ]^E
and I'm using the Levenberg-Marquardt algoritem/method to
evaluate the parameters to fit the set of data points.
Many thanks for giving direction to the appropriate solution ;)
Joerg
"Jerry W. Lewis" <post_a_reply@no_e-mail.com> wrote in message news:<402368E1.5000609@no_e-mail.com>...
Your function is linear in A and D but nonlinear in B, C, and E.
Therefore you could reformulate your problem as a nonlinear least
squares fit in B, C, and E -- for any set of values of these
parameters, A and D can be computed using linear least squares.