我试图用matplotlib绘制一些可视化,在我的一个函数中,我检查波是否是对数。这是我目前的工作版本:
import numpy as np
def is_logarithmic(waves):
def expfunc(x, a, b, c):
return a*np.exp(b*x) + c
wcopy = list(waves)
wcopy.sort()
# If the ratio of x-max : x-min < 10, don't use a logarithmic scale
# (at least in matplotlib)
if (wcopy[-1] / wcopy[0]) < 10:
return False
# Take a guess at whether it is logarithmic by seeing how well the x-scale
# fits an exponential curve
diffs = []
for ii in range(len(wcopy) - 1):
diffs.append(wcopy[ii + 1] - wcopy[ii])
# Fit the diffs to an exponential curve
x = np.arange(len(wcopy)-1)
try:
popt, pcov = curve_fit(expfunc, x, diffs)
except Exception as e:
print e
popt = [0.0, 0.0, 0.0]
pcov = np.inf
# If a > 0.5 and covsum < 1000.0
# use a logarithmic scale.
if type(pcov) == float:
# It's probably np.inf
covsum = pcov
else:
covsum = pcov.diagonal().sum()
res = (covsum < 1000.0) & (popt[0] > 0.5)
return res
我试图找到替代scipy curve_fit()
的替代品,因为我不想安装这么大的库只是为了使用这个功能。还有其他我可以使用的东西,或者其他函数的组合,从理想上只使用numpy和matplotlib来获得类似的结果吗?
答案 0 :(得分:3)
Numpy可以做线性(numpy.linalg.lstsq
)和多项式拟合(numpy.polyfit
)。一般来说,你需要scipy来适应你自己定义的函数(scipy使用fortran minpack而numpy只用C构建)。
但是,对于您的示例,您可以使用类似this问题的方法来拟合exp。基本上,采用等式两边的对数并使用numpy.polyfit
。
答案 1 :(得分:0)
您还可以使用lmfit.models
库,该库具有很多预定义的模型。
https://lmfit.github.io/lmfit-py/
https://lmfit.github.io/lmfit-py/builtin_models.html#exponential-and-power-law-models
它还支持自定义功能。