Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Aug 28, 2023
1 parent 16412c3 commit 6359aa1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/qibocal/protocols/characterization/rabi/amplitude.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ def _fit(data: RabiAmplitudeData) -> RabiAmplitudeResults:
index = local_maxima[0] if len(local_maxima) > 0 else None
# 0.5 hardcoded guess for less than one oscillation
f = x[index] / (x[1] - x[0]) if index is not None else 0.5
print(f)
pguess = [0.5, 1, f, np.pi / 2]
try:
popt, _ = curve_fit(
Expand Down

0 comments on commit 6359aa1

Please sign in to comment.