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