Provided I have experimental couples $(x,y)$, is the adjustment of $\beta_i$ parameters of the following function:
$$y = f(x) = \beta_0 \cdot \exp (\beta_1\cdot x) + \beta_2$$
A Non Linear Least Squares problem because of the $\beta_2$ parameter?
I know that I can first estimate $\beta_2$ and then apply the following transformation:
$$y' = y - \beta_2$$
This will reduce the problem to a linear least square in term of parameters because the transformation $\log y'$ is possible.
I am just surprised that a simple offset factor could make a Least Square problem Non Linear. Am I right?