how to generate a uniform random variable in the interval [-1 1] with mean zero?
11 次查看(过去 30 天)
显示 更早的评论
Dear sir/madam,
I am working random variables. I need to know how can I generate a uniform random variable in the interval [-1 1], and also with mean zero? The function rand() generates a uniform random variable in the interval [0 1]. Looking forward to hearing from you soon.
Thanking you, BSD
0 个评论
回答(2 个)
Javier
2011-7-24
You could use this code:
a=-1;b=1;
r = a + (b-a).*rand(100,1);
v=[-1:0.02:1];
v(:,v==0)=[];
plot(v,r)
Use help rand for more information!
4 个评论
Javier
2011-7-25
I use that line to plot the values among -1 and 1,to get the same number of points in x axes and y axe.
Walter Roberson
2011-7-25
If you were going to do that, then I would suggest using
v=[-1:0.02:1];
first, and then using
r = a + (b-a).*rand(length(v),1);
However, I don't think plot(v,r) gives anything useful: there is no reason I can see to use [-1,1] as your X axes. You are, after all, not creating a PDF or CDF.
Walter Roberson
2011-7-24
If you require the mean of a finite random sample of a symmetric uniform distribution to be exactly 0, then the value of the final sample is completely determined by the sum of the other samples -- the final sample would have to be exactly the negative of the rest of the sum so that the overall sum is 0. And that implies that the last sample cannot itself be random: its value is predictable by knowing the other values. You thus cannot construct a finite random sampling with an exactly fixed mean if all values are to be random.
1 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!