aboutsummaryrefslogtreecommitdiff
path: root/math/bevington/ppoiss.f
diff options
context:
space:
mode:
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