remove dead code

This commit is contained in:
Valentin Boettcher 2023-03-22 13:49:45 -04:00
parent a58641c3a9
commit ddbd494d6d
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE

View file

@ -151,13 +151,8 @@ def detect_bands_fixed_k(
) )
σ_1, σ_2, *_ = np.sqrt(np.diag(cov)) σ_1, σ_2, *_ = np.sqrt(np.diag(cov))
(e_1, σ_1), (e_2, σ_2) = np.sort(((e_1, σ_1), (e_2, σ_2)), axis=0) (e_1, σ_1), (e_2, σ_2) = np.sort(((e_1, σ_1), (e_2, σ_2)), axis=0)
# es = np.linspace(0, col.size, 1000)
# plt.plot(col)
# plt.plot(es, double_lorentzian(es, e_1, e_2, γ, _))
return e_1, e_2, σ_1, σ_2 return e_1, e_2, σ_1, σ_2