Skip to content

Commit eaaa4e4

Browse files
Update lectures/likelihood_var.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6880afe commit eaaa4e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lectures/likelihood_var.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def simulate_samuelson(model, G_obs, T, N_paths=1):
670670
else:
671671
# Multiple paths: states is (N_paths, T+1, 3)
672672
observables = np.zeros((N_paths, T+1, 3))
673-
for i in range(min(20, N_paths)):
673+
for i in range(N_paths):
674674
observables[i] = (G_obs @ states[i].T).T
675675
676676
return states, observables

0 commit comments

Comments
 (0)