1

我正在使用 Matlab 函数“hist”来估计我所拥有的随机过程实现的概率密度函数。

我其实是:

1)取h0的直方图

2) 对其面积进行归一化以获得 1

3) 绘制归一化曲线。

问题是,无论我使用多少箱,直方图永远不会从 0 开始,也永远不会回到 0,而我真的很喜欢这种行为。

我使用的代码如下:

    Nbin = 36;
   [n,x0] = hist(h0,Nbin);
   edge = find(n~=0,1,'last');
   Step = x0(edge)/Nbin;
   Scale_factor = sum(Step*n);
   PDF_h0 = n/Scale_factor;

   hist(h0 ,Nbin)  %plot the histogram
   figure;
   plot(a1,p_rice); %plot the theoretical curve in blue 
   hold on;
   plot(x0, PDF_h0,'red'); %plot the normalized curve obtained from the histogram

我得到的情节是: 在此处输入图像描述

在此处输入图像描述

4

1 回答 1

0

如果您的问题是绘制的红色曲线没有变为零:您可以解决添加初始点和最终点与 y-axis value 的问题0。从您的代码看来,x 轴分离是Step,所以它将是:

plot([x0(1)-Step x0 x0(end)+Step], [0 PDF_h0 0], 'red')
于 2014-04-19T16:12:27.427 回答