Skip to content

Commit

Permalink
Fix EK0
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Jan 4, 2024
1 parent 0cd7654 commit ec85266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filtering/update.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function update!(
K2_cache::AbstractMatrix,
M_cache::AbstractMatrix,
C_dxd::AbstractMatrix,
C_d::AbstractVector,
C_d::AbstractArray,
)
z, S = measurement.μ, measurement.Σ
m_p, P_p = x_pred.μ, x_pred.Σ
Expand Down Expand Up @@ -119,7 +119,7 @@ function update!(
return x_out, loglikelihood
end
function pn_logpdf!(measurement, S_chol, tmpmean)
μ = measurement.μ
μ = reshape(measurement.μ, :)
Σ = S_chol

d = length(μ)
Expand Down

0 comments on commit ec85266

Please sign in to comment.