Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KriFos1 committed Dec 29, 2023
1 parent fb6eeaf commit ae7ef8b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipt/update_schemes/update_methods_ns/approx_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def update(self):
if len(self.scale_data.shape) == 1:
scaled_delta_data = np.dot(np.expand_dims(self.scale_data ** (-1), axis=1),
np.ones((1, pert_state.shape[1]))) * (
self.read_obs_data - self.aug_pred_data)
self.real_obs_data - self.aug_pred_data)
else:
scaled_delta_data = solve(
self.scale_data, (self.real_obs_data - self.aug_pred_data))
Expand Down
Empty file removed simulator/EM.py
Empty file.

0 comments on commit ae7ef8b

Please sign in to comment.