我正在使用下面的代码来拟合一个具有maxwellian的数组:
import scipy.stats as stats
maxwell = stats.maxwell
params = maxwell.fit(vmag, floc=0)
print params
(0, 110.99252206746627)我想第一个参数告诉我麦克斯韦人的左截断位置。第二个参数告诉我什么?
谢谢!
发布于 2014-05-24 01:24:49
虽然在maxwell的scipy.stats子集中没有这样说,但是在scipy.stats.rv_continuous中它被描述为scale参数。
https://stackoverflow.com/questions/23840174
复制相似问题