Your model only uses four parameters, but you feed it 8 parameters. (resize the "initial guess" control to see)!
You need to make sure that it only contains 4 elements. Just hiding them by making the array container smaller does not help ;).
Basically what happens. The fit proceeds fine, because the unused parameters always have a zero partial derivative and they are considered converged from the beginning. The only problem is the matrix inversion for the covariance matrix output. It cannot be inverted because it contains multiple rows and columns with zeroes
Also make sure to NOT use "insert into array" to programmatically modify an initial estimate. Use "replace array element" else you change the number of parameters again.
The attached seems to work just fine. See if it helps.
Message Edited by altenbach on 01-05-2006 09:11 AM