I am trying to fit a function to data that looks like the following.
I have no idea what the function is, but by visual inspection it seems to be a parabola (or some other convex polynomial) + a scaled sinusoidal whose amplitude increases more than linearly.
I tried using a function finder from an online curve fitting tool at zunzun.com. All the functions reported by it ignore the sinusoidal component and look like a 'U'. I then tried to fit the following function but it does not result in a good fit.
power((A*X-B),2) + C*sin(D+2*pi*X/E)*X + F
Please suggest candidate functions to fit this data. Also please suggest tools for curve fitting when the type of function is not known. Thanks for any hints. -neha


You can easily factor out the periodic part, it is robably something like $\sin(\frac{1}{40}x-K)\cdot L\exp(Mx)$. Find out $L$ and $M$ so it fits the amplitude increase (that is clearly exponential).
Once done, you will have a much simpler convex left, it's quite flat so it may be like a translation of $x^\alpha$ with $1<\alpha<2$.