minor fixes

This commit is contained in:
2022-12-18 14:15:09 +03:00
parent c01b53403b
commit 65b04a31de
2 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ from scipy.optimize import curve_fit
from numpy import tanh
def probe(x, I_0, k_0, A):
return I_0 * tanh(k_0 / I_0 * x) + A * x
def probe(x, I_0, T_e, A):
return I_0 * tanh(x / T_e) + A * x
def fit(x, y):