Skip to content

Commit 4d9d4ab

Browse files
committed
function arguments formatting
1 parent a119545 commit 4d9d4ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/estimator/kalman.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ struct UnscentedKalmanFilter{M<:SimModel} <: StateEstimator
336336
γ::Float64
337337
::Vector{Float64}
338338
::Diagonal{Float64}
339-
function UnscentedKalmanFilter{M}(model::M, i_ym, nint_ym, Asm, Csm, P̂0, Q̂, R̂, α, β, κ) where {M<:SimModel}
339+
function UnscentedKalmanFilter{M}(
340+
model::M, i_ym, nint_ym, Asm, Csm, P̂0, Q̂, R̂, α, β, κ
341+
) where {M<:SimModel}
340342
nx, ny = model.nx, model.ny
341343
nym, nyu = length(i_ym), ny - length(i_ym)
342344
nxs = size(Asm,1)
@@ -414,7 +416,7 @@ function UnscentedKalmanFilter(
414416
α::Real = 1e-3,
415417
β::Real = 2,
416418
κ::Real = 0
417-
) where {M<:SimModel}
419+
) where {M<:SimModel}
418420
if nint_ym == 0 # alias for no output integrator at all :
419421
nint_ym = fill(0, length(i_ym));
420422
end

0 commit comments

Comments
 (0)