File indexing completed on 2025-08-03 08:14:07
0001 #ifndef __POISSON_H_
0002 #define __POISSON_H_
0003
0004 #include <stdio.h>
0005 #include <fstream>
0006 #include <iostream>
0007 #include <iomanip>
0008 #include <sstream>
0009 #include <string>
0010
0011 #include <cmath>
0012
0013 using namespace std;
0014
0015
0016
0017
0018 class Poisson {
0019
0020 private:
0021
0022 public:
0023
0024 long double poisson_prob( double mean, int value );
0025 long double exp1( double mean, int value );
0026 long double exp2( double mean );
0027 long double fact( int value );
0028
0029 };
0030
0031 #endif