no idea why it keeps printing the plot from model.py + other unresolved bugs

This commit is contained in:
ralf 2024-08-12 13:15:13 +03:00
parent 1498402be6
commit d374a34c65
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -22,7 +22,7 @@ class Fitter:
self.current_fit_range = current_fit_range self.current_fit_range = current_fit_range
self.fit_results = {} self.fit_results = {}
self.tspan = self.time_points self.tspan = [0,1000]
self.dt: float = 1 # 1.0 self.dt: float = 1 # 1.0
self.time_points = np.arange(*self.tspan, self.dt) self.time_points = np.arange(*self.tspan, self.dt)