Skip to content

Commit

Permalink
Update qlook.py (issue187)-2
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinjiFujita authored Jul 29, 2024
1 parent ce46b92 commit e1e14c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions decode/qlook.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def daisy(
f"(sigma_x = {popt[3]:+.2f}, "
f"sigma_y = {popt[4]:+.2f},"
f"theta = {np.rad2deg(popt[5]):+.1f}, \n"
f"min_frequency: {min_frequency/1e9:+.1f} GHz, max_frequency: {max_frequency/1e9:+.1f} GHz"
f"min_frequency: {float(min_frequency):+.1f} GHz, max_frequency: {float(max_frequency):+.1f} GHz"
)

for ax in axes: # type: ignore
Expand Down Expand Up @@ -544,7 +544,7 @@ def raster(
f"(sigma_x = {popt[3]:+.2f}, "
f"sigma_y = {popt[4]:+.2f},"
f"theta = {np.rad2deg(popt[5]):+.1f}, \n"
f"min_frequency: {min_frequency/1e9:+.1f} GHz, max_frequency: {max_frequency/1e9:+.1f} GHz"
f"min_frequency: {float(min_frequency):+.1f} GHz, max_frequency: {float(max_frequency):+.1f} GHz"
)

for ax in axes: # type: ignore
Expand Down

0 comments on commit e1e14c8

Please sign in to comment.