I need to perform linearization of the function $axe^{-bx}$ in order to perform least squares fitting algorithm. The closest to linear I got is this: $\ln{y}-\ln{x}=\ln{a}+\beta x$ .
I tried to google it and found this old post. It is written here that $\ln{y}-\ln{x}=\ln{a}+\beta x$ is linear, and if we want it to fit into the form of $y'=mx'+b$ , we can just take: $y'=\ln{y}-\ln{x} , b=\ln{a} , x'=x , m=\beta $.
But as far as I know, $y'$ needs to be a function of $y$, without any more variables. So how could this be possible to take $y'=\ln{y}-\ln{x}$ here?
And if this indeed incorrect as I think, is there a way for linearize this function?
By "linearization" I would assume they mean at a point, say, $(c,ace^{-bc})$. Then the linearization could be taken to be $y= (a-abc)e^{-bc}(x-c)+ace^{-bc}$. This comes from $y= f'(x_1)(x-x_1)+f(x_1)$.