Skip to content

Commit

Permalink
Fix T1 msr fit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Oct 20, 2023
1 parent 7f0f07a commit 716f8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/characterization/coherence/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def exponential_fit(data, zeno=None):
popt = [
(y_max - y_min) * popt[0] + y_min,
(y_max - y_min) * popt[1] * np.exp(x_min * popt[2] / (x_max - x_min)),
popt[2] / (x_max - x_min),
popt[2] * (x_max - x_min),
]
t2 = popt[2]

Expand Down

0 comments on commit 716f8ba

Please sign in to comment.