We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e3763 commit 1f86a0fCopy full SHA for 1f86a0f
docs/src/migration_3_to_4.md
@@ -69,7 +69,7 @@ The major difference between versions `3` and `4` is the support for nested mode
69
```julia
70
@model function kalman_filter_step(y, prev_x, new_x, A, B, Q, P)
71
new_x ~ MvNormal(μ = A * prev_x, Σ = Q)
72
- y ~ MvNormal(μ = B * x, Σ = P)
+ y ~ MvNormal(μ = B * new_x, Σ = P)
73
end
74
75
@model function state_space_model(y, A, B, Q, P)
0 commit comments