cdf of a generated random variable is not summing to 1, any reason?

17 次查看(过去 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?

采纳的回答

Walter Roberson
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
Walter Roberson 2021-11-3
y = 5 + (8-5).*rand(3600,1);
y1 = sort(y);
pd = fitdist(y,'Normal')
pd =
NormalDistribution Normal distribution mu = 6.50521 [6.47714, 6.53328] sigma = 0.858968 [0.839576, 0.879283]
yy = pdf(pd,y1);
cy = cdf(pd,y1);
plot(y1,cy)
cy(end) - cy(1)
ans = 0.9191
cdf(pd, 8) - cdf(pd, 5)
ans = 0.9192

请先登录,再进行评论。

更多回答(1 个)

POKU GYASI
POKU GYASI 2022-4-20

Thanks Walter. You explanation is very helpful

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by