From ddbd494d6d2bcbe51ac028e814ec42ad542a1194 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Wed, 22 Mar 2023 13:49:45 -0400 Subject: [PATCH] remove dead code --- bandfit/bandfit.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bandfit/bandfit.py b/bandfit/bandfit.py index 58ce895..70770a2 100644 --- a/bandfit/bandfit.py +++ b/bandfit/bandfit.py @@ -151,13 +151,8 @@ def detect_bands_fixed_k( ) σ_1, σ_2, *_ = np.sqrt(np.diag(cov)) - (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