My apologies if i have multiple questions in a single thread, but as they are all related, i want to ask them as one question. I have the following questions:
1) what will be the log transform (in terms of equation) of the following equation:
$$y = a_0\exp\left(-\frac x{a_1}\right) + (1-a_0)\exp\left(-\frac x{a_2}\right) + a_3\tag{1}$$ So the answer that i am looking for is what will be of the form $$\ln y=\ldots\tag{2}$$
I want to use this formula for fitting a bi-exponential decay model by converting nonlinear problem to linear.
for the following data \begin{array}{c|c} X&Y\\ \hline 3.3 &1\\ 8.5 &0.6898\\ 13.7 &0.3519\\ 18.9& 0.2593\\ 24.1& 0.2731\\ 29.3& 0.1435\\ 34.5& 0.1574\\ 39.7& 0.0972\\ 44.9& 0.0787\\ 50.1& 0.0741\\ 55.3& 0.0741\\ 60.6& 0.0278\\ 65.7& 0.0648\\ 70.9& 0.0556\\ 76.1& 0.0463\\ \end{array}
2) Also which function (lsqnonneg,lsqlin) should i use after conversion of nonlinear eq'n to linear with logarithmic values in MATLAB?
3) how does upper and lower bounds will change after logarithmic conversion ?
If this approach is not advisable then how can i choose upper and lower bounds for such an equation $(1)$.


You can't do the transform you are looking for. You can take the $a3$ term out by making $y'=y-a3$ but you still have a nonlinear fit. You can use a multidimensional function minimizer to estimate the parameters.