return a list of count randoms, possibly by an efficient technique, if the generator supports it. Definition at line 466 of file fitting_toolkit.py. 00466 : 00467 "return a list of count randoms on [0,1) for resampling. Override to pick a different random generator" 00468 r=self.randoms.random 00469 return array([r() for i in range(count)]) 00470 ##
|