使用MATLAB进行离散分布均值的置信区间

时间:2015-10-05 21:38:12

标签: matlab distribution confidence-interval

我的二项分布为负,需要求解其均值的95%置信区间。我正在使用MATLAB,这是一个probDist对象。

由于这不正常,我想我必须使用自举,但我不知道如何实现它。我尝试了bootci函数,但它需要样本作为输入,而不是分发。

编辑:这是我的代码(它不起作用):

r = 2;
p = 0.5;
dist_x = makedist('NegativeBinomial', 'R', r, 'p', p)
bootfun = @(x) mean(x);
bootci(1000, bootfun, dist_x)

输出是:

Error using bootstrp>bootEvalCommand
(line 288)
BOOTFUN must have at least one
non-scalar argument.

0 个答案:

没有答案