Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixing compile error from MSVC. Try 3. | Pearu Peterson | 2008-04-09 | 1 | -2/+2 | |
| | ||||||
* | Fixing compile error from MSVC. Try 2. | Pearu Peterson | 2008-04-09 | 1 | -1/+1 | |
| | ||||||
* | Fixing compile error from MSVC. | Pearu Peterson | 2008-04-09 | 2 | -2/+2 | |
| | ||||||
* | Cleanup. | Pearu Peterson | 2008-04-09 | 1 | -4/+0 | |
| | ||||||
* | Apply modified patch from ticket 673. The patch is effective when using ↵ | Pearu Peterson | 2008-04-09 | 3 | -5/+44 | |
| | | | | unoptimized lapack shipped with numpy [tested] or if optimized lapack library does not have xerbla_ defined [not tested] | |||||
* | Fix issue 587 | Pearu Peterson | 2008-04-09 | 2 | -10/+35 | |
| | ||||||
* | Regression test for ticket #714. | Stefan van der Walt | 2008-04-09 | 1 | -0/+5 | |
| | ||||||
* | Add up to date (and slightly cleaned up) support for Cython after porting | Fernando Perez | 2008-04-09 | 11 | -1/+438 | |
| | | | | | | | the existing Pyrex one, put in deprecation markers in the old Pyrex dir. The pyrex dir can be removed in a subsequent commit. | |||||
* | Added test for handling missing data using loadtxt. | dhuard | 2008-04-09 | 1 | -0/+18 | |
| | ||||||
* | Formatted the docstring. Added comment regarding the handling of missing ↵ | dhuard | 2008-04-09 | 1 | -42/+40 | |
| | | | | values. Addresses ticket #717. | |||||
* | Improve empty_like and zeros_like to respect sub-type. | Travis Oliphant | 2008-04-09 | 1 | -27/+29 | |
| | ||||||
* | Fix doc-tests for financial.py so they don't rely on floating-point ↵ | Travis Oliphant | 2008-04-08 | 2 | -21/+23 | |
| | | | | exactness. Start filling in final function. | |||||
* | Added function for computing condition number, with tests and docs; closes #622. | aarchiba | 2008-04-08 | 2 | -1/+54 | |
| | ||||||
* | Fix test for assert* with nan values + string formatting issue when handling ↵ | David Cournapeau | 2008-04-08 | 2 | -6/+9 | |
| | | | | nan. | |||||
* | Improve comments. | Travis Oliphant | 2008-04-08 | 1 | -1/+10 | |
| | ||||||
* | Add docs and examples for financial functions. | Travis Oliphant | 2008-04-08 | 6 | -45/+98 | |
| | ||||||
* | Handle nan in assert_array* funcs correctly. All numpy tests pass | David Cournapeau | 2008-04-08 | 1 | -2/+25 | |
| | ||||||
* | Add basic tests for assert_array_almost_equal. | David Cournapeau | 2008-04-08 | 1 | -35/+47 | |
| | ||||||
* | assert* funcs: Add generic test for rank 3 arrays. | David Cournapeau | 2008-04-07 | 1 | -0/+19 | |
| | ||||||
* | assert* funcs test: add generic test for rank1 arrays for all dtype. | David Cournapeau | 2008-04-07 | 1 | -0/+18 | |
| | ||||||
* | Test assert* funcs for arrays with Nan and rec arrays. | David Cournapeau | 2008-04-07 | 1 | -0/+22 | |
| | ||||||
* | Some more tests for assert_* functions. | David Cournapeau | 2008-04-07 | 1 | -1/+28 | |
| | ||||||
* | Add the tests in setup file for testing package. | David Cournapeau | 2008-04-07 | 1 | -0/+2 | |
| | ||||||
* | Start testing test functions. | David Cournapeau | 2008-04-07 | 1 | -0/+30 | |
| | ||||||
* | Revert comparison function; nan handling broken. | David Cournapeau | 2008-04-07 | 1 | -19/+2 | |
| | ||||||
* | Fix broken detection of nan in comparison function. | David Cournapeau | 2008-04-07 | 1 | -2/+2 | |
| | ||||||
* | Handling nan values for assert_ functions. | David Cournapeau | 2008-04-07 | 1 | -2/+19 | |
| | ||||||
* | Fix maskedarray's std and var of complex arrays, with test. Add test for ddof. | aarchiba | 2008-04-07 | 2 | -2/+59 | |
| | ||||||
* | core: | pierregm | 2008-04-07 | 6 | -85/+36 | |
| | | | | | | | | | | compressed : make sure that the result is always an array. count : make sure that a regular ndarray is returned. added the get_fill_value function extras: added the expand_dims function deleted varu/stdu (redundant with the ddof=1 parameter) | |||||
* | Documented and tested new behaviour of std and var on complex numbers. ↵ | aarchiba | 2008-04-07 | 5 | -34/+70 | |
| | | | | Added ddof argument and its documentation to the std and var methods of matrix. Documented ddof for std and var methods of ma. Note that stdu and varu in ma still have the old, peculiar, behaviour for complex values. | |||||
* | Test that matrix_power behaves correctly for boolean matrices. | aarchiba | 2008-04-07 | 1 | -0/+4 | |
| | ||||||
* | Remove redundant check because PyObject_TypeCheck already includes an exact ↵ | Travis Oliphant | 2008-04-06 | 1 | -3/+1 | |
| | | | | check. | |||||
* | Factor out matrix_multiply from defmatrix. Based on a patch by | Stefan van der Walt | 2008-04-06 | 4 | -43/+146 | |
| | | | | Anne Archibald. | |||||
* | Add tests for ddof parameter in var/std [patch by Anne Archibald]. | Stefan van der Walt | 2008-04-06 | 2 | -0/+17 | |
| | ||||||
* | Add tests for changeset 4822 [patch by Anne Archibald]. | Stefan van der Walt | 2008-04-05 | 2 | -9/+44 | |
| | ||||||
* | Test effect of newaxis indexing on array scalar. | Stefan van der Walt | 2008-04-05 | 1 | -0/+1 | |
| | ||||||
* | Use newly available emitter in numscons to handle distutils build dir issues ↵ | David Cournapeau | 2008-04-05 | 1 | -33/+31 | |
| | | | | instead of setting them manually in scons script. | |||||
* | Replace Copy by Clone call in scons script (Copy is deprecated). | David Cournapeau | 2008-04-05 | 1 | -1/+1 | |
| | ||||||
* | Modified io._getconv to allow loading values stored as float as integers ↵ | dhuard | 2008-04-04 | 2 | -1/+11 | |
| | | | | | | arrays. Added test to check the behavior as suggested in the comment from b. southey in ticket #623 | |||||
* | Add modified internal rate of return calculation which is more conservative ↵ | Travis Oliphant | 2008-04-04 | 2 | -1/+31 | |
| | | | | and takes into account re-investing profits and expense of financing losses. | |||||
* | Add fromregex function (needs more testing) and some simple spreadsheet-like ↵ | Travis Oliphant | 2008-04-04 | 3 | -0/+207 | |
| | | | | financial calculations. | |||||
* | Fix typo. | Travis Oliphant | 2008-04-03 | 1 | -1/+1 | |
| | ||||||
* | Fix typo reported in #637. | Travis Oliphant | 2008-04-03 | 1 | -1/+1 | |
| | ||||||
* | added 1D tests for loadtxt and savetxt. Fixed a bug | dhuard | 2008-04-03 | 2 | -1/+16 | |
| | ||||||
* | Fixed a bug with loadtxt and savetxt failing on record arrays. This ↵ | dhuard | 2008-04-03 | 2 | -4/+54 | |
| | | | | | | addresses ticket #623. Added simple tests for loadtxt and savetxt. | |||||
* | Fix mean docstring. | Stefan van der Walt | 2008-04-03 | 1 | -5/+4 | |
| | ||||||
* | Fix-up a few errors in oldnumeric. | Travis Oliphant | 2008-04-01 | 1 | -3/+3 | |
| | ||||||
* | fix-up imports in oldnumeric/ma.py | Travis Oliphant | 2008-04-01 | 1 | -6/+6 | |
| | ||||||
* | Add old ma.py interface to oldnumeric compatibility layer so that it stays ↵ | Travis Oliphant | 2008-04-01 | 1 | -7/+2262 | |
| | | | | the same. | |||||
* | Longdouble printing of nan's causes problems on some machines. | Travis Oliphant | 2008-03-30 | 1 | -0/+2 | |
| |