|
Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/7.0.0/doc/ssclib/node69.html
Дата изменения: Wed Jun 28 23:12:27 2006 Дата индексирования: Sat Dec 22 08:35:04 2007 Кодировка: Поисковые слова: asteroid |
This returns the probability
of the occurrence of an integer
according to the Poisson distribution
where
is the average or expectation value of
.
Note that the argument may also be a real number. In this case what is returned is
The value
is not quite a probability density: it would need to be normalized by
in order for this to be true. However it does have the property that, if
,
.
interface poissonProb
real function poissonProbSingle(av, realI)
real(single), intent(in) :: av, realI
end function poissonProbSingle
real function poissonProbInt32(av, i)
real(single), intent(in) :: av
integer(int32), intent(in) :: i
end function poissonProbInt32
end interface