| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | BUG: F distributions need the appropriate scale factor. | Robert Kern | 2008-08-12 | 1 | -1/+2 |
| | | |||||
| * | Fix bad string escaping in mtrand.pyx docstrings (+ regenerate mtrand.c) | Pauli Virtanen | 2008-08-07 | 2 | -761/+727 |
| | | |||||
| * | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 3 | -3115/+4517 |
| | | |||||
| * | Regenerated mtrand.c after standardizing NumPy import in mtrand.pyx. | Alan McIntyre | 2008-07-25 | 1 | -2007/+1782 |
| | | |||||
| * | Standardize NumPy import as "import numpy as np". | Alan McIntyre | 2008-07-25 | 1 | -78/+78 |
| | | |||||
| * | Generate headers in the right place for inplace builds. | Robert Kern | 2008-07-19 | 1 | -5/+1 |
| | | |||||
| * | Simplify a bit more scons scripts. | David Cournapeau | 2008-07-09 | 1 | -1/+1 |
| | | |||||
| * | Use NumpyPythonExtension instead of DistutilsPythonExtension where possible. | David Cournapeau | 2008-07-09 | 1 | -4/+2 |
| | | |||||
| * | BUG: Make sure the Zipf results are within the allowable range. | Robert Kern | 2008-07-09 | 1 | -7/+14 |
| | | |||||
| * | Restore old test framework classes. | Alan McIntyre | 2008-06-21 | 2 | -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 McIntyre | 2008-06-17 | 2 | -6/+6 |
| | | | | | modules. | ||||
| * | adapt numpy.random to new scons build_dir architecture. | David Cournapeau | 2008-06-12 | 2 | -46/+48 |
| | | |||||
| * | Do not mess with __NUMPY_SETUP__ in scons scripts anymore: this is handled in | David Cournapeau | 2008-05-20 | 1 | -5/+1 |
| | | | | | | numscons. | ||||
| * | Use pyrexc to compile mtrand.pyx for 1.1. | Stefan van der Walt | 2008-05-19 | 1 | -10941/+4594 |
| | | |||||
| * | Fix math markup in docstrings. | Stefan van der Walt | 2008-05-19 | 2 | -5488/+11563 |
| | | |||||
| * | Add the cached Gaussian to the state tuple. Preserve backwards compatibility ↵ | Robert Kern | 2008-04-09 | 3 | -2235/+2325 |
| | | | | | with the old state tuple. | ||||
| * | Fix #581. | Robert Kern | 2008-04-09 | 3 | -2194/+2222 |
| | | |||||
| * | Re-generated the pyrex mtrand code after fixing seed setting bug: ticket #555 | Travis Oliphant | 2008-03-22 | 3 | -2056/+2081 |
| | | |||||
| * | Attempt to fix ticket #555 | Travis Oliphant | 2008-03-22 | 2 | -0/+5 |
| | | |||||
| * | Make sure that multivariate_normal() uses the standard_normal() method ↵ | Robert Kern | 2008-02-12 | 2 | -1865/+1489 |
| | | | | | rather than the function so as to use the same consistent state. | ||||
| * | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -4/+4 |
| | | |||||
| * | numpy.random now builds with scons | David Cournapeau | 2008-01-07 | 2 | -0/+90 |
| | | |||||
| * | more janitorial work | Jarrod Millman | 2007-12-29 | 1 | -3/+3 |
| | | |||||
| * | Use a correct upper bound for the inversion search in binomial distributions. | Robert Kern | 2007-12-06 | 1 | -1/+1 |
| | | |||||
| * | BUG: fix incorrect ordering of the 'good' and 'bad' objects in the ↵ | Robert Kern | 2007-12-03 | 1 | -2/+2 |
| | | | | | hypergeometric distribution. | ||||
| * | Fix randint for negative interval. | Stefan van der Walt | 2007-11-23 | 3 | -4/+10 |
| | | |||||
| * | Rename test classes to CapWords. | Stefan van der Walt | 2007-10-02 | 1 | -1/+1 |
| | | |||||
| * | Fix Von Mises random number generation algorithm to match that of Python and R. | Travis Oliphant | 2007-09-09 | 1 | -14/+15 |
| | | |||||
| * | Temporary workaround for problem with 'multivariate' when specifying zero | Stefan van der Walt | 2007-08-28 | 4 | -847/+861 |
| | | | | | probabilities. | ||||
| * | When checking for the _WIN32 preprocessor symbol, don't #error on failure | cookedm | 2007-05-28 | 1 | -2/+1 |
| | | |||||
| * | Clean up setup() calls. | Pearu Peterson | 2007-05-11 | 1 | -1/+1 |
| | | |||||
| * | Fix #484: random state not portable between 32-bit and 64-bit architectures | cookedm | 2007-04-02 | 2 | -2277/+2342 |
| | | | | | | The random state now uses a uint32 array on both architectures. It should also handle old pickles. | ||||
| * | Fixes #488. In rk_interval, use rk_random if the interval size is less than ↵ | cookedm | 2007-04-02 | 1 | -0/+8 |
| | | | | | | | | 2**32. For 64-bit machines, this means results will agree with 32-bit machines, and will be faster for these interval sizes (one less rk_random evaluation). | ||||
| * | More fixes to mtrand from recent speed ups. | Travis Oliphant | 2007-03-20 | 3 | -480/+419 |
| | | |||||
| * | More fixes related to #471 | Travis Oliphant | 2007-03-20 | 2 | -30/+23 |
| | | |||||
| * | Fix ticket #471 | Travis Oliphant | 2007-03-20 | 2 | -21/+16 |
| | | |||||
| * | Make random number generators faster for scalar parameters. | Travis Oliphant | 2007-03-19 | 3 | -3825/+6059 |
| | | |||||
| * | Added dirichlet random number generator to NumPy | Travis Oliphant | 2007-02-01 | 2 | -1036/+1335 |
| | | |||||
| * | Correct mtrand for Pyrex 0.9.5 | Robert Kern | 2007-01-28 | 3 | -1109/+995 |
| | | |||||
| * | Fix missing import statement. Fix bug where random.permutation did not ↵ | Travis Oliphant | 2007-01-19 | 2 | -635/+648 |
| | | | | | accept numpy scalars. | ||||
| * | Regenerate mtrand.c with the lxml project's branch of Pyrex in order to fi a ↵ | Robert Kern | 2007-01-09 | 1 | -833/+866 |
| | | | | | 2.5-related bug in the official Pyrex distribution. | ||||
| * | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 1 | -2/+1 |
| | | |||||
| * | Fix random.shuffle | Travis Oliphant | 2006-12-09 | 3 | -1868/+2056 |
| | | |||||
| * | Fix shuffle and chararray printing for empty strings. | Travis Oliphant | 2006-12-09 | 1 | -5/+25 |
| | | |||||
| * | Fix random.poisson(0) to return 0 (#229) | Travis Oliphant | 2006-09-13 | 3 | -897/+912 |
| | | |||||
| * | Pass the converted array arguments instead of the scalars. | Robert Kern | 2006-09-11 | 2 | -907/+894 |
| | | |||||
| * | Many name-changes in oldnumeric. This may break some numpy code that was ↵ | Travis Oliphant | 2006-08-04 | 3 | -438/+0 |
| | | | | | using the oldnumeric interface. | ||||
| * | Add PyArray_ContiguousFromObject to numpy.pxi | Travis Oliphant | 2006-08-01 | 2 | -126/+69 |
| | | |||||
| * | Update to use pyrex 0.9.4.1 | Travis Oliphant | 2006-07-26 | 2 | -1644/+1712 |
| | | |||||
| * | Fix random.uniform | Travis Oliphant | 2006-07-26 | 3 | -2122/+2072 |
| | | |||||
