diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /math/bevington/ppoiss.f | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'math/bevington/ppoiss.f')
-rw-r--r-- | math/bevington/ppoiss.f | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/math/bevington/ppoiss.f b/math/bevington/ppoiss.f new file mode 100644 index 00000000..4782fde8 --- /dev/null +++ b/math/bevington/ppoiss.f @@ -0,0 +1,23 @@ +c function ppoiss.f +c +c source +c Bevington, page 39. +c +c purpose +c evaluate poisson probability function +c +c usage +c result = ppoiss (nobs, averag) +c +c description of parameters +c nobs - number of items observed +c averag - mean of distribution +c +c subroutines and function subprograms required +c factor (n) +c calculates n factorial for integers +c + function ppoiss (nobs,averag) +1 ppoiss=((averag**nobs)/factor(nobs))*exp(-averag) + return + end |