We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think the covariance matrix $\Sigma_{t-1}$ should be updated at each time $t$.
$$ \begin{equation} p(x_t | u_t, x_{t-1}) \sim N(A_t x_{t-1}, A_t\Sigma_{t-1} A_t^T+R) \end{equation} $$
But your update is doing like below:
$$ \begin{equation} p(x_t | u_t, x_{t-1}) \sim N(A_t x_{t-1}, A_t\Sigma_0 A_t^T+R) \end{equation} $$
The text was updated successfully, but these errors were encountered:
I think the covariance matrix Σt−1 should be updated at each time t. p(xt|ut,xt−1)∼N(Atxt−1,AtΣt−1AtT+R) But your update is doing like below: p(xt|ut,xt−1)∼N(Atxt−1,AtΣ0AtT+R)
I think the covariance matrix Σt−1 should be updated at each time t.
p(xt|ut,xt−1)∼N(Atxt−1,AtΣt−1AtT+R)
p(xt|ut,xt−1)∼N(Atxt−1,AtΣ0AtT+R)
Sorry my fault, you're right
Sorry, something went wrong.
No branches or pull requests
I think the covariance matrix$\Sigma_{t-1}$ should be updated at each time $t$ .
But your update is doing like below:
The text was updated successfully, but these errors were encountered: