how to generate a uniform random variable in the interval [-1 1] with mean zero?

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

回答(2 个)

Javier
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
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
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
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.

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by