|
Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/6.5.0/doc/emsaplib/node29.html
Дата изменения: Tue Aug 16 03:21:13 2005 Дата индексирования: Sat Dec 22 10:07:11 2007 Кодировка: Поисковые слова: http www.badastronomy.com phpbb index.php |
Aim: Compute cumulative Poisson distribution over some range. cumulativePoisson(k) = Sum(0 to k) P(k)
The routine declaration is:
subroutine cumulativePoisson(mu, kmin, kmax, cvf)
! mu : average value
! kmin : minimum number of counts
! kmax : maximum number of counts
! cvf(1:kmax-kmin+1) : cumulative Poisson distribution from kmin to kmax
real(double), intent(in) :: mu
integer, intent(in) :: kmin, kmax
real(double), dimension(:), intent(out) :: cvf