aboutsummaryrefslogtreecommitdiff
path: root/math/bevington/ppoiss.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /math/bevington/ppoiss.f
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'math/bevington/ppoiss.f')
-rw-r--r--math/bevington/ppoiss.f23
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