summaryrefslogtreecommitdiff
path: root/numpy/random
Commit message (Collapse)AuthorAgeFilesLines
...
* Forgot to update needs_mingw_ftime_workaround function.David Cournapeau2008-11-171-1/+1
|
* Conditionally setup mingw workaround on __GNUC__ since we can't detect if we ↵David Cournapeau2008-11-171-1/+3
| | | | are built with mingw in distutils setup.py.
* Do not generate a config.h for randomkit: it does not work as it is, and ↵David Cournapeau2008-11-172-27/+12
| | | | adding per-subpackage include path is a PITA with distutils.
* 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 ↵David Cournapeau2008-11-171-1/+4
| | | | need to workaround mingw bug.
* Use a wrapper around _ftime to work around a mingw bug in msvc runtimes ↵David Cournapeau2008-11-171-1/+10
| | | | import libraries.
* Simplify ftime workaround for python 2.6 under mingw: we only need to make ↵David Cournapeau2008-11-171-21/+11
| | | | _ftime an alias to _ftime64 when needed.
* Another typo.David Cournapeau2008-11-141-1/+1
|
* Fix hex conversion for msvcrt (we do not need to convert VS verion, but ↵David Cournapeau2008-11-141-3/+3
| | | | MSVCRT version).
* Typo.David Cournapeau2008-11-141-1/+1
|
* Typo.David Cournapeau2008-11-141-1/+1
|
* Add a macro to know whether we need the mingw workaround for _ftime + add a ↵David Cournapeau2008-11-141-0/+17
| | | | define for the MSVCR version.
* 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-142-2/+20
|
* Add code to detect msvc used to build python.David Cournapeau2008-11-141-0/+9
|
* 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
| | | | they are still an improvement)
* 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 ↵Robert Kern2008-08-243-25/+43
| | | | of the result to C longs gives a negative number (i.e. out of bounds), reject the sample and try again until we do get something in bounds.
* BUG: Allow floating point argument n to negative binomial distribution.Robert Kern2008-08-235-3213/+3812
|
* Update `random` docstring.Stefan van der Walt2008-08-211-3/+82
|
* 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-053-3115/+4517
|
* 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
|
* Generate headers in the right place for inplace builds.Robert Kern2008-07-191-5/+1
|
* Simplify a bit more scons scripts.David Cournapeau2008-07-091-1/+1
|
* Use NumpyPythonExtension instead of DistutilsPythonExtension where possible.David Cournapeau2008-07-091-4/+2
|
* BUG: Make sure the Zipf results are within the allowable range.Robert Kern2008-07-091-7/+14
|
* Restore old test framework classes.Alan McIntyre2008-06-212-2/+2
| | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc.
* Switched to use nose to run tests. Added test and bench functions to all ↵Alan McIntyre2008-06-172-6/+6
| | | | modules.
* adapt numpy.random to new scons build_dir architecture.David Cournapeau2008-06-122-46/+48
|
* Do not mess with __NUMPY_SETUP__ in scons scripts anymore: this is handled inDavid Cournapeau2008-05-201-5/+1
| | | | | numscons.
* 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-093-2235/+2325
| | | | with the old state tuple.
* Fix #581.Robert Kern2008-04-093-2194/+2222
|
* 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 ↵Robert Kern2008-02-122-1865/+1489
| | | | rather than the function so as to use the same consistent state.
* ran reindentJarrod Millman2008-02-081-4/+4
|
* numpy.random now builds with sconsDavid Cournapeau2008-01-072-0/+90
|
* more janitorial workJarrod Millman2007-12-291-3/+3
|
* 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 ↵Robert Kern2007-12-031-2/+2
| | | | hypergeometric distribution.
* Fix randint for negative interval.Stefan van der Walt2007-11-233-4/+10
|
* Rename test classes to CapWords.Stefan van der Walt2007-10-021-1/+1
|
* 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-284-847/+861
| | | | probabilities.