在scipy python中,maxwell返回的参数的数学名称是什么?



我正在使用下面的代码对一个数组进行麦克斯韦拟合:

import scipy.stats as stats
maxwell = stats.maxwell
params = maxwell.fit(vmag, floc=0)
print params
(0, 110.99252206746627)

我想第一个参数告诉我麦克斯韦方程的左截止位置。第二个参数告诉我们什么?

谢谢!

虽然在scipy.statsmaxwell子集中没有说明,但在scipy.stats.rv_continuous中被描述为尺度参数

最新更新