mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 06:28:00 -05:00
Merge pull request #280 from yoneken/fix-kalman_basic
[Kalman Basics] Align some subscripts on the text to follow the code
This commit is contained in:
@@ -354,14 +354,14 @@
|
||||
"\n",
|
||||
"Here for the numerator, $P(Z \\mid X),P(X)$ both are gaussian.\n",
|
||||
"\n",
|
||||
"$N(\\bar\\mu, \\bar\\sigma^1)$ and $N(\\bar\\mu, \\bar\\sigma^2)$ are their mean and variances.\n",
|
||||
"$N(\\mu_1, \\sigma_1^2)$ and $N(\\mu_2, \\sigma_2^2)$ are their mean and variances.\n",
|
||||
"\n",
|
||||
"New mean is \n",
|
||||
"\n",
|
||||
"$$\\mu_\\mathtt{new} = \\frac{\\sigma_z^2\\bar\\mu + \\bar\\sigma^2z}{\\bar\\sigma^2+\\sigma_z^2}$$\n",
|
||||
"$$\\mu_\\mathtt{new} = \\frac{\\mu_1 \\sigma_2^2 + \\mu_2 \\sigma_1^2}{\\sigma_1^2+\\sigma_2^2}$$\n",
|
||||
"New variance is\n",
|
||||
"$$\n",
|
||||
"\\sigma_\\mathtt{new} = \\frac{\\sigma_z^2\\bar\\sigma^2}{\\bar\\sigma^2+\\sigma_z^2}\n",
|
||||
"\\sigma_\\mathtt{new} = \\frac{\\sigma_1^2\\sigma_2^2}{\\sigma_1^2+\\sigma_2^2}\n",
|
||||
"$$"
|
||||
]
|
||||
},
|
||||
@@ -759,4 +759,4 @@
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user