minor fixes
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user