Function form to fit a nonlinear trend

32 Views Asked by At

I'm trying to guess a function that would fit the non-oscillating part of the following curve:

enter image description here

I tried something in the form of $y = 1 - e^{-ax}$ and $tan^{-1}(ax)$, but it didn't work since the trend becomes horizontal for extremely low values of $y$.

Are there any better suggestions to try?

Thank you!

1

There are 1 best solutions below

1
On BEST ANSWER

Hint.

a = 0.05;
b = 1/2000;
r = 0.004;
y = a (1 - Exp[-b t]) + r Sin[10 2 Pi/2900 t]
Plot[y, {t, 0, 3000}, AspectRatio -> 0.8]

enter image description here