用Matlab求二元核估计中的置信区间

时间:2017-02-17 12:41:20

标签: matlab gaussian confidence-interval kernel-density mixture-model

我执行这段代码是为了估计一组双变量随机点的概率密度函数:

x = [0+.5*rand(20,1) 5+2.5*rand(20,1);
        .75+.25*rand(10,1) 8.75+1.25*rand(10,1)];

figure
ksdensity(x);

我想知道如何使用来自Matlab函数ksdensity的信息来评估我需要的置信区间。

我的目标是在集合中找出异常值点,即落在置信区间内的点。

以下2个数字显示了我试图实现目标的起点。

enter image description here

enter image description here

0 个答案:

没有答案