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
"""params (dict): a dictionary of model paramters: (F, Q, H, R, mu_0, sigma_0)"""
...
# simulate the systemfortinrange(n_timesteps):
# write the expressions for computing state values given the time stepift==0:
state[t] =params['mu_0']
else:
state[t] =params['F'] @ state[t-1] +zi[t]
which uses a fixed initial state for sampling (the mean) although the parameters imply that you should treat it as a distribution.
We should either provide a static initial state value and correct the solution, or correct the solution to sample from the initial state distribution, such as
The solution in T3 contains the following
which uses a fixed initial state for sampling (the mean) although the parameters imply that you should treat it as a distribution.
We should either provide a static initial state value and correct the solution, or correct the solution to sample from the initial state distribution, such as
The text was updated successfully, but these errors were encountered: