Skip to content

Commit 657d21c

Browse files
committedOct 22, 2020
Update set_pgap_ygap to allow setting pgap and ygap.
1 parent 2dba015 commit 657d21c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎src/filters/kalman_filter.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ function kalman_filter(regime_indices::Vector{UnitRange{Int}}, y::AbstractArray,
197197
Es::Vector{<:AbstractMatrix{S}}, s_0::AbstractVector{S} = Vector{S}(undef, 0),
198198
P_0::AbstractMatrix{S} = Matrix{S}(undef, 0, 0);
199199
outputs::AbstractVector{Symbol} = [:loglh, :pred, :filt],
200-
Nt0::Int = 0, tol::AbstractFloat = 0.0, set_pgap_ygap::Tuple{Bool,Int,Int} = (false,70,71)) where {S<:Real}
200+
Nt0::Int = 0, tol::AbstractFloat = 0.0,
201+
set_pgap_ygap::Tuple{Bool,Int,Int,Float64,Float64} = (false,70,71,0.,12.)) where {S<:Real}
201202

202203
# Determine outputs
203204
return_loglh = :loglh in outputs
@@ -231,8 +232,8 @@ function kalman_filter(regime_indices::Vector{UnitRange{Int}}, y::AbstractArray,
231232

232233
for i = 1:length(regime_indices)
233234
if set_pgap_ygap[1] && i == (length(regime_indices) - 1)
234-
s_t[set_pgap_ygap[2]] = 0.
235-
s_t[set_pgap_ygap[3]] = -12.
235+
s_t[set_pgap_ygap[2]] = -set_pgap_ygap[4]
236+
s_t[set_pgap_ygap[3]] = -set_pgap_ygap[5]
236237
end
237238
ts = regime_indices[i]
238239

0 commit comments

Comments
 (0)
Please sign in to comment.