这是我写的生成两个随机变量的概率分布的代码。2现在我想画出JPD。
clear all;
clc;
x1 = randn(1000,1);
x2 = 10*randn(1000,1);
[count_1, b] = hist(x1, 25); %25 bins
pd1 = count_1 / length(x1) / (b(2) - b(1)); % probability distribution function of x1
[count_2, bn] = hist(x2, 25); %25 bins
pd2 = count_2 / length(x2) / (bn(2) - bn(1)); % probabitlity distribtuion function of x2
%subplot(2,2,1), plot(x,s1)
%subplot(2,2,2),plot(x,s2)
%subplot(2,2,1),plot(b,pd1)
%subplot(2,2,2),plot(bn,pd2)
我正在努力得到一个..请任何帮助那里..我已经试了一个多月谢谢..
1条答案
按热度按时间svdrlsy41#
据我所知,你没有关闭的形式为您的联合pdf,但“只有数据”。使用Matlab,你确实可以使用这个工具命名为
hist3
希望这对你有帮助。