Let ($x_1$,$y_1$),...,($x_n$,$y_n$) be my data set. I have a function $f(x,{\bf c})$ where ${\bf c}=(c_1,...,c_m)$ is a vector of $m$ parameters. I want to fit to the data using non-linear least squares :
$$\min_{\bf c}{\sum_{i=1}^n (y_i - f(x_i,{\bf c}))^2}$$
I want to find the sensitivity of my optimal parameters ${\bf c}^*$ with my data. In other words, how can I find
$$ \partial { c}_j^* \over \partial y_i $$
for $i=1,...,n$ and $j=1,...,m$.
In practice, I want to find the effect of perturbing my $y_i$'s by a small amount on the parameters ${\bf c}^*$ obtained.
Please give me some references and the name of this derivative. I am having a hard time finding information using Google on this subject. Also, please assume that my function $f$ is behaving well in term of differentiability (it is continuous and is differentiable multiple times).
Thank you very much for your help!