I've fit a system of non-linear ODE to some experimental data using Levemberg-Marquardt. After the algorithm converged, I estimated the Hessian matrix of the system using:
$H = (J^TJ)$
The covariance matrix is then the inverse of H:
$cov = H^{-1}$
To get an unbiased estimate, I rescaled cov like so:
$cov_{scaled} = cov * (RSS / (m - n))$
Where $m$ is the number of measurements, and $n$ is the number of parameters.
The diagonal of $cov_{scaled}$ gives me the uncertainty in the parameters.
However, if I am interested in the uncertainty of a 'meta parameter', such as:
$p_{meta} = p_1 + p_2$
How do I estimate that from $cov_{scaled}$?
What if $p_{meta}$ is a slightly more complex function, such as:
$p_{meta} = p_1/p_2$
Is there a generic approach?
I cannot really re-parametrize the system and fit p_new directly unfortunately.