Fixed equation for update covariance.
Equation for P at the end of the chapter was wrong. The equation in code is correct, I just made a mistake in the LaTex.
This commit is contained in:
parent
0d8036a109
commit
1d1866d00d
@ -34587,7 +34587,7 @@
|
||||
"\n",
|
||||
"it implements the somewhat more complicated form \n",
|
||||
"\n",
|
||||
"$$\\mathbf{P} = (\\mathbf{I} - \\mathbf{KH})\\mathbf{P}^-(\\mathbf{I} - \\mathbf{KRK})^\\mathsf{T} + \\mathbf{KRK}^\\mathsf{T}$$.\n",
|
||||
"$$\\mathbf{P} = (\\mathbf{I} - \\mathbf{KH})\\mathbf{P}^-(\\mathbf{I} - \\mathbf{KH})^\\mathsf{T} + \\mathbf{KRK}^\\mathsf{T}$$.\n",
|
||||
"\n",
|
||||
"The reason for this altered equation is that it is more numerically stable than the former equation, at the cost of being a bit more expensive to compute. It is not always possible to find the optimal value for $\\text{K}$, in which case the former equation will not produce good results because it assumes optimality. The longer reformulation used in the code is derived from more general math that does not assume optimality, and hence provides good results for non-optimal filters (such as when we can not correctly model our measurement error).\n",
|
||||
"\n",
|
||||
|
Loading…
Reference in New Issue
Block a user