Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrakenhoff committed Jun 1, 2021
1 parent 0d0929c commit 091dc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metran/kalmanfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def decompose(self, observation_matrix, method="smoother"):
cdf_means = [[]] * ncdf
for k in range(ncdf):
idx = nsdf + k
for t in enumerate(means):
for t, _ in enumerate(means):
cdf_means[k].append(np.dot(observation_matrix[:, idx],
means[t, idx]))
return (sdf_means, cdf_means)
Expand Down

0 comments on commit 091dc2d

Please sign in to comment.