cdf of a generated random variable is not summing to 1, any reason?
15 次查看(过去 30 天)
显示 更早的评论
please i have generated a uniform random variable
y = 5 + (8-5).*rand(3600,1)
. i run the cdf of the generated data using the code
pd = fitdist(y1,'Normal');
y1 = sort(y)
yy = pdf(pd,y1);
cy = cdf(pd,y1);
plot(y1,cy)
but the plot shows that the sum is not equal to 1. please can someone help me find the reason? and how to solve this problem?
0 个评论
采纳的回答
Walter Roberson
2021-11-3
You are fitting a finite uniform random distribution as-if it were a Normal distribution -- which is an infinite distribution.
Then you expect the cumulative distribution over the finite sample to be exactly equal to 1.
But we know that cdf from -infinity to +infinity is 1 for Normal distribution, and in the best possible case, if the uniform random values just happened to look normal over the interval, we would expect that the cdf for the interval would be equal to the cdf from -infinity to the upper bound, minus the cdf from -infinity to the lower bound. The only time the result could be 1 would be if the upper bound of the interval was +infinity and the lower bound was -infinity... but your upper bound is 8 and your lower bound is 5.
You should not expect cdf of 1 for this situation.
1 个评论
Walter Roberson
2021-11-3
y = 5 + (8-5).*rand(3600,1);
y1 = sort(y);
pd = fitdist(y,'Normal')
yy = pdf(pd,y1);
cy = cdf(pd,y1);
plot(y1,cy)
cy(end) - cy(1)
cdf(pd, 8) - cdf(pd, 5)
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!