Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
llegregam committed Jun 13, 2024
1 parent e1c154f commit 45f079b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions physiofit/base/fitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,10 +413,9 @@ def monte_carlo_analysis(self):
logger.debug(f"New matrix:\n{noisy_matrix}\n")
logger.debug(f"Sd matrix:\n{self.sd}\n")
logger.debug(f"time vector:\n{self.model.time_vector}\n")
log_args = (opt_res.x, noisy_matrix, self.model.time_vector,
self.model.args)
logger.debug(
f"simulated matrix:{self.model.simulate(log_args)}\n"
"simulated matrix:"
f"{self.model.simulate(opt_res.x, noisy_matrix, self.model.time_vector, self.model.args)}\n"
)
# We optimise the parameters using the noisy matrix as input

Expand Down

0 comments on commit 45f079b

Please sign in to comment.