예제 #1
0
 def probability(self, x):
     return choose(self.n, x) * (self.p ** x) * \
       (1.0 - self.p) ** (self.n - x)
예제 #2
0
파일: dist.py 프로젝트: 0x0all/nupic
 def probability(self, x):
   return choose(self.n, x) * (self.p ** x) * \
     (1.0 - self.p) ** (self.n - x)