Hello
I'm trying to get the best fitted parameters from my data using C extended function.
I was able to get the result by using lmfit.minimize() function, but stderr's not calculated
they keep giving me "None" as a stderr (result is in the Presentation.pdf, please do not care the numbers.)
attatched "modulecreat.c " is a c script I used to make a module "subfunc" that will be imported in the "pythonFit.py" script.
for example, in my "pythonFit.py" I can call my wrapped C function from the module..
'''
import subfunc
subfunc.modle(x,parameters...)
'''
Can you help me to know why they give me "None" as a stderr??
I want to get the errors and covariaces between parameters.
Regards,
kooktaeKim.