I do have three differential equations of the form:
dx/dt= (-K1*x)
dI/dt= ((K1*(x) - (K2*I**2))/2)
dm/dt= 0.5*(K2*I**2)
I have data for time, x, I and m, with respect to time. How to calculate K1 and K2 using available packages in python? Can anyone help me with a sample code?
Thank you