I need to make a set of 2000 random numbers between 0 and 1, with a mean of 0.5, with most of the numbers being either high or low (bimodal distrubution with peaks at 0 and 1)
조회 수: 2 (최근 30일)
이전 댓글 표시
Basically what the question says. It should look something like this
Though the left side doesn't need to have a higher peak or anything.
Flat distributions are easy - but how do I go about making a vector with 2000 numbers with this type of distribution?
댓글 수: 0
채택된 답변
Roger Stafford
2016년 2월 24일
편집: Roger Stafford
2016년 2월 24일
t = 2*rand(1,2000)-1;
x = (sign(t).*sqrt(abs(t))+1)/2;
hist(x,20)
This should approximate your two linear distribution segments. If you use a much higher value than 2000, say 2000000, it will approximate it much more closely. This does not get the spike at the left end. I'll leave that refinement to you.
Added note: You can test the accuracy of the above by replacing the 'rand' call with 'linspace', since the latter will be exactly uniformly distributed.
t = 2*linspace(0,1,2000000)-1;
x = (sign(t).*sqrt(abs(t))+1)/2;
hist(x,20)
댓글 수: 2
Amy Wong
2017년 12월 13일
If I have a set of data and I want to plot a histogram with multiples of 0.1 which is the x-axis in the image. So, if I use your answer, for the hist what do I change to?
x = (sign(COE).*sqrt(abs(COE))+1)/2;
hist(x,??)
추가 답변 (1개)
jgg
2016년 2월 24일
m = randi([0,1],2000,1);
r = abs(randn(2000,1));
r = r - min(r);
r = r./max(r);
num = m;
num(m==0) = 0 + r(m==0);
num(m==1) = 1 - r(m==1);
Something like this should do it, since you don`t really care how they are generated. Basically, generate your integers (0,1) then just add some noise. This is truncated Gaussian noise.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!