我尝试使用拒绝方法在Fortran中使用均匀分布的值创建正态分布。它实际上或多或少都有效,但我没有得到我想要的结果。
我使用这段代码生成正态分布
function generator result(c)
implicit none
integer, dimension(2) :: clock
double precision :: c,d
call System_clock(count=clock(1))
call random_seed(put=clock)
!initialize matrix with random values
call random_number(c)
end function
subroutine Rejection(aa,bb,NumOfPoints)
implicit none
double precision :: xx, yy, cc
integer :: ii, jj, kk
integer, intent(in) :: NumOfPoints
double precision, intent(in) :: aa, bb
cc=1
xx=generator()
allocate(rejectionArray(NumOfPoints))
do ii=1, NumOfPoints
call random_number(xx)
xx=aa+(bb-aa)*xx
call random_number(yy)
do while(cc*yy>1/sqrt(pi)*exp(-xx**2))
call random_number(xx)
xx=aa+xx*(bb-aa)
call random_number(yy)
end do
rejectionArray(ii)=xx
end do
end subroutine
由于我使用的是函数1 / pi * exp(-x ^ 2),我认为我获得的正态分布也应该给出具有前因子1 / pi ^(1/2)的分布,但它才不是。如果我创建一个直方图并使该直方图符合正态分布,我得到的因子约为0.11。
这怎么可能?我究竟做错了什么?
编辑:这就是我创建直方图的方法
implicit none
double precision :: aa, bb
integer :: NumOfPoints, ii, kk, NumOfBoxes, counter, CounterTotal,counterTotal2
logical :: exists
character(len=15) :: frmat
double precision :: Intermediate
%read NumOfPoints (Total amount of random numbers), NumOfBoxes
%(TotalAmountofBins)
open(unit=39, action='read', status='old', name='samples.txt')
read(39,*) NumOfPoints, aa, bb, NumOfBoxes
close(39)
% number of Counts will be stored temporarily in 'counter'
counter=0
open(unit=39, action='write', status='replace', name='distRejection.txt')
Call Rejection(aa,bb,NumOfPoints)
do ii=1, NumOfBoxes
counter=0
%calculate the middle of the bin
Intermediate=aa+(2*ii-1)*((bb-aa)/NumOfBoxes)/2
%go through all the random numbers and check if they are within
% one of the bins. If they are in one bin -->increase Counter
% by one
do kk=1, size(rejectionArray,1)
if(abs(RejectionArray(kk)-intermediate).le.((bb-aa)/NumOfBoxes/2)) then
counter=counter+1
end if
end do
%save Points + relative number of Counts in file
write(39,100)intermediate,dble( counter)/dble(NumOfPoints)
100 format (f10.3,T20,f10.3,/)
end do
close(39)
前因子现在是0.056,即1 / sqrt(pi)* 1/10。这是我想要的前因的1/10倍。问题是如果我扩大我整合函数的区域,这个前因子就不会变得更好。这意味着如果使用此代码创建从-5000到+ 5000的分布,那么我仍然获得相同的前因子,即使此函数的-5000到5000的积分导致我使用的分布为0.2。 (我取随机分布的值并将它们放入matlab并用这些值计算从-5000到5000的数值积分,得到0.2。这意味着积分的前因子应该是1 / pi * 1/5。我很困惑的事实是,高斯的-5000到+50000之间的积分只有0.2。根据mathematica,这个积分大约是1.所以有些东西必须是错误的)
答案 0 :(得分:2)
我只是使用你的例程在-2和2之间生成1000个点并获得高斯分布。
如何生成直方图?可以使用函数N exp(-x**2)/sqrt(pi) * dx
绘制未标准化的直方图,其中N是点数,dx是分箱间隔。