@@ -9,30 +9,36 @@ methods which have been implemented in parmest.
99
10101. Reduced Hessian Method
1111
12- When the objective function is the sum of squared errors (SSE) between the
13- observed and predicted values of the measured variables, the covariance matrix is:
12+ When the objective function is the sum of squared errors (SSE):
13+ :math: `\text {SSE} = \sum _{i = 1 }^n \left (y_{i} - \hat {y}_{i}\right )^2 `,
14+ the covariance matrix is:
1415
1516 .. math ::
1617 V_{\boldsymbol {\theta }} = 2 \sigma ^2 \left (\frac {\partial ^2 \text {SSE}}
1718 {\partial \boldsymbol {\theta } \partial \boldsymbol {\theta }}\right )^{-1 }_{\boldsymbol {\theta }
1819 = \boldsymbol {\theta }^*}
1920
20- When the objective function is the weighted SSE (WSSE), the covariance matrix is:
21+ When the objective function is the weighted SSE (WSSE):
22+ :math: `\text {WSSE} = \frac {1 }{2 } \left (\mathbf {y} - f(\mathbf {x};\boldsymbol {\theta })\right )^\text {T}
23+ \mathbf {W} \left (\mathbf {y} - f(\mathbf {x};\boldsymbol {\theta })\right )`,
24+ the covariance matrix is:
2125
2226 .. math ::
2327 V_{\boldsymbol {\theta }} = \left (\frac {\partial ^2 \text {WSSE}}
2428 {\partial \boldsymbol {\theta } \partial \boldsymbol {\theta }}\right )^{-1 }_{\boldsymbol {\theta }
2529 = \boldsymbol {\theta }^*}
2630
2731 Where :math: `V_{\boldsymbol {\theta }}` is the covariance matrix of the estimated
28- parameters, :math: `\boldsymbol {\theta }` are the unknown parameters,
29- :math: `\boldsymbol {\theta ^*}` are the estimates of the unknown parameters, and
30- :math: `\sigma ^2 ` is the variance of the measurement error. When the standard
32+ parameters, :math: `y` are the observed measured variables, :math: `\hat {y}` are the
33+ predicted measured variables, :math: `n` is the number of data points,
34+ :math: `\boldsymbol {\theta }` are the unknown parameters, :math: `\boldsymbol {\theta ^*}`
35+ are the estimates of the unknown parameters, :math: `\mathbf {x}` are the decision
36+ variables, and :math: `\mathbf {W}` is a diagonal matrix containing the inverse of the
37+ variance of the measurement error, :math: `\sigma ^2 `. When the standard
3138 deviation of the measurement error is not supplied by the user, parmest
3239 approximates the variance of the measurement error as
33- :math: `\sigma ^2 = \frac {1 }{n-l} \sum e_i^2 ` where :math: `n` is the number of data
34- points, :math: `l` is the number of fitted parameters, and :math: `e_i` is the
35- residual for experiment :math: `i`.
40+ :math: `\sigma ^2 = \frac {1 }{n-l} \sum e_i^2 ` where :math: `l` is the number of
41+ fitted parameters, and :math: `e_i` is the residual for experiment :math: `i`.
3642
3743 In parmest, this method computes the inverse of the Hessian by scaling the
3844 objective function (SSE or WSSE) with a constant probability factor.
0 commit comments