我需要绘制一个均匀分布矩阵的概率密度函数
U = rand (1,1000)
但我不能使用 ksdensity 函数。我试过这个:
term = 1000;
U = rand (1,term);
x=0:0.001:1;
for j = 2:term;
u_height(j) = u_height(j-1)+((abs(x(j)-U(j))<0.01/2)/0.01)/term;
n_height(j) = n_height(j-1)+((abs(x(j)-N(j))<0.01/2)/0.01)/term;
end
但它没有正确绘制