You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionfill_U2star!(U2star::Array{T, 3}, Ustar::Matrix{T}, prods::Int, t::Int) where T
for i in1:prods, j in (prods +1):(prods +2)
U2star[i, j, t] = Ustar[i, j]
endreturnendfunctionfill_sqrtF_kf!(sqrtF_kf::Array{T, 3}, Ustar::Matrix{T}, prods::Int, t::Int) where T
for i in (prods +1):(prods +2), j in (prods +1):(prods +2)
sqrtF_kf[i, j, t] = Ustar[i, j]
endreturnend
The text was updated successfully, but these errors were encountered:
Some steps on the square root filter can be optimized with auxiliary functions, for example:
These steps could be replaced with
The text was updated successfully, but these errors were encountered: