I have a function f(x) = a + bx + cx^2 where x is an integer and takes only positive values. I also have a list of value of f(x) for x = 0, 1, 2,...... How do I estimate the values of a, b and c using some module in python (eg. Dsolve)
Here I want a generic module where I can define any function (f(x)) and the data set and get the values of the coefficients. for ex. the function could be f(x) = a + bx + ce^x or anything else.