summaryrefslogtreecommitdiff
path: root/numpy/random/mtrand
Commit message (Expand)AuthorAgeFilesLines
* 1.3.x: regenerate mtrand.c due to docstring changesPauli Virtanen2009-03-271-1998/+2032
* 1.3.x backport r6725, Merge from the doc wikiPauli Virtanen2009-03-251-11/+70
* Fix tickets #921 and #923. Add regression tests.Charles Harris2009-03-141-2/+2
* Applied Anand's patch fixing Ticket #986 regarding the domain of the Von Mise...dhuard2009-03-091-3/+11
* Forgot to add time headers when mingw workaround is not used on windows.David Cournapeau2008-11-171-0/+2
* Include time.h and sys/timeb.h just after defining our custom __MSVCRT_VERSIO...David Cournapeau2008-11-171-2/+2
* Conditionally setup mingw workaround on __GNUC__ since we can't detect if we ...David Cournapeau2008-11-171-1/+3
* Do not generate a config.h for randomkit: it does not work as it is, and addi...David Cournapeau2008-11-171-2/+0
* Fix the inaccurate comment regarding _ftime issues with mingw.David Cournapeau2008-11-171-2/+2
* Set __MSVCRT_VERSION__ to make _ftime64 visible from time.h header when we ne...David Cournapeau2008-11-171-1/+4
* Use a wrapper around _ftime to work around a mingw bug in msvc runtimes impor...David Cournapeau2008-11-171-1/+10
* Postpone time.h include because we will need to customize it on windows.David Cournapeau2008-11-141-1/+2
* Generate config header for random kit (empty for now).David Cournapeau2008-11-141-0/+1
* Regenerate mtrand.c due to docstring changesPauli Virtanen2008-10-281-3090/+2775
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ...Pauli Virtanen2008-10-281-17/+431
* Import documentation from doc wiki (part 1)Pauli Virtanen2008-10-271-4/+4
* BUG: Logarithmic series needs to exclude p==0 and p==1. When the conversion o...Robert Kern2008-08-243-25/+43
* BUG: Allow floating point argument n to negative binomial distribution.Robert Kern2008-08-234-3213/+3806
* BUG: F distributions need the appropriate scale factor.Robert Kern2008-08-121-1/+2
* Fix bad string escaping in mtrand.pyx docstrings (+ regenerate mtrand.c)Pauli Virtanen2008-08-072-761/+727
* Merge from documentation editor.Stefan van der Walt2008-08-052-3115/+4433
* Regenerated mtrand.c after standardizing NumPy import in mtrand.pyx.Alan McIntyre2008-07-251-2007/+1782
* Standardize NumPy import as "import numpy as np".Alan McIntyre2008-07-251-78/+78
* BUG: Make sure the Zipf results are within the allowable range.Robert Kern2008-07-091-7/+14
* Use pyrexc to compile mtrand.pyx for 1.1.Stefan van der Walt2008-05-191-10941/+4594
* Fix math markup in docstrings.Stefan van der Walt2008-05-192-5488/+11563
* Add the cached Gaussian to the state tuple. Preserve backwards compatibility ...Robert Kern2008-04-092-2235/+2302
* Fix #581.Robert Kern2008-04-092-2194/+2199
* Re-generated the pyrex mtrand code after fixing seed setting bug: ticket #555Travis Oliphant2008-03-223-2056/+2081
* Attempt to fix ticket #555Travis Oliphant2008-03-222-0/+5
* Make sure that multivariate_normal() uses the standard_normal() method rather...Robert Kern2008-02-122-1865/+1489
* Use a correct upper bound for the inversion search in binomial distributions.Robert Kern2007-12-061-1/+1
* BUG: fix incorrect ordering of the 'good' and 'bad' objects in the hypergeome...Robert Kern2007-12-031-2/+2
* Fix randint for negative interval.Stefan van der Walt2007-11-232-4/+4
* Fix Von Mises random number generation algorithm to match that of Python and R.Travis Oliphant2007-09-091-14/+15
* Temporary workaround for problem with 'multivariate' when specifying zeroStefan van der Walt2007-08-282-847/+847
* Fix #484: random state not portable between 32-bit and 64-bit architecturescookedm2007-04-022-2277/+2342
* Fixes #488. In rk_interval, use rk_random if the interval size is less than 2...cookedm2007-04-021-0/+8
* More fixes to mtrand from recent speed ups.Travis Oliphant2007-03-203-480/+419
* More fixes related to #471Travis Oliphant2007-03-202-30/+23
* Fix ticket #471Travis Oliphant2007-03-202-21/+16
* Make random number generators faster for scalar parameters.Travis Oliphant2007-03-193-3825/+6059
* Added dirichlet random number generator to NumPyTravis Oliphant2007-02-012-1036/+1335
* Correct mtrand for Pyrex 0.9.5Robert Kern2007-01-283-1109/+995
* Fix missing import statement. Fix bug where random.permutation did not accep...Travis Oliphant2007-01-192-635/+648
* Regenerate mtrand.c with the lxml project's branch of Pyrex in order to fi a ...Robert Kern2007-01-091-833/+866
* Fix random.shuffleTravis Oliphant2006-12-093-1868/+2056
* Fix shuffle and chararray printing for empty strings.Travis Oliphant2006-12-091-5/+25
* Fix random.poisson(0) to return 0 (#229)Travis Oliphant2006-09-133-897/+912
* Pass the converted array arguments instead of the scalars.Robert Kern2006-09-112-907/+894