Multivariate Nomral Distribution Matlab
이전 댓글 표시
I want to generate multivariate normal joint distribution for a 3*3 matrix. Say I have mu = [0.4 0.5] and sigma = [0.25 03; 0.45 0.5]. As I wanted to generate a 3*3 joint distribution, I decided to do the following:
mu = [0.4 0.5];
sigma = [0.25 0.3; 0.3 0.5];
x1 = 1:3;
x2 = 1:3;
[X1,X2] = meshgrid(x1,x2);
X = [X1(:) X2(:)];
y = mvnpdf(X,mu,sigma);
My assumption is that X now has 3*3 matrix index. If the value is 3 1 it means X = 3, Y = 1. For example, if I print the value of X I get:
1 1
1 2
1 3
2 1
2 2
2 3
3 1
3 2
3 3
So, my assumption was the final pdf will be a 9*1 vector and each value will represent the probability of each row. For example, if the second value is 0.05, it will indicate P(X=1,Y=2) = 0.05.
When I gey y, I get the following:
y =
0.3484
0.0471
0.0000
0.0000
0.0027
0.0015
0.0000
0.0000
0.0000
However, as y is a joint distribution, the sum(y) should have been 1. But here it's 0.3997.
Can anyone tell me what am I doing wrong here? And why the sum is not 1?
채택된 답변
추가 답변 (1개)
Jeff Miller
2019년 10월 16일
0 개 추천
I don't see anything wrong with what you are doing, but only with your expectations about things summing to 1.
In general, the PDF values of continuous distributions don't sum to 1. Instead, the total area under the distribution integrates to 1, which is quite different.
Among other things, note that you are considering only the integer values 1,2,3 for the random variables, but in a multivariate normal the random variables are real-valued, so values like 1.11107, 2.5632, etc are also possible. Even if PDF values summed to one (which they do not), you would not get that sum here because you are ignoring all of these non-integer possibilities.
카테고리
도움말 센터 및 File Exchange에서 Uniform Distribution (Continuous)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!