| Commit message (Expand) | Author | Age | Files | Lines |
| * | Revert r5470. | Charles Harris | 2008-07-20 | 1 | -8/+2 |
| * | Fix _SIGN macros for MSVC compilers. Test. | Charles Harris | 2008-07-20 | 1 | -3/+3 |
| * | Fix ticket #794. | Charles Harris | 2008-07-20 | 1 | -2/+8 |
| * | Fix arccosh branch cut. Remove one unnecessary operation from nc_asinh. | Pauli Virtanen | 2008-07-19 | 1 | -5/+5 |
| * | BUG: C-style /**/ comments only. | Robert Kern | 2008-07-05 | 1 | -1/+1 |
| * | Add some section headings to the file. | Charles Harris | 2008-04-24 | 1 | -0/+24 |
| * | Use a more accurate expression for arccosh of complex numbers. The | Charles Harris | 2008-03-17 | 1 | -3/+6 |
| * | Fix arccosh for complex. The previous implementation could take the sqrt of a | Charles Harris | 2008-03-17 | 1 | -4/+3 |
| * | Clear sign-bit when calculating absolute value. | Stefan van der Walt | 2008-03-11 | 1 | -0/+1 |
| * | separate config.h (private header) and numpyconfig.h (public header) | David Cournapeau | 2007-12-18 | 1 | -0/+1 |
| * | Add degrees() and radians() ufuncs | cookedm | 2007-12-14 | 1 | -0/+19 |
| * | Fix whitespace to conform to Python 3000 convention. | Stefan van der Walt | 2007-08-21 | 1 | -1055/+1055 |
| * | Trying to fix unknown symbol __imp_tanhf linking error, using nc_tanhf. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix unknown symbol __imp_tanhf linking error. | Pearu Peterson | 2007-07-28 | 1 | -0/+1 |
| * | Fixed typos. | Pearu Peterson | 2007-07-28 | 1 | -2/+2 |
| * | Trying to fix compiler wrarnings, 5. Defined ldexpf when DISTUTILS_USE_SDK. | Pearu Peterson | 2007-07-28 | 1 | -0/+6 |
| * | Trying to fix compiler wrarnings, 5. Defined frexpf when DISTUTILS_USE_SDK. | Pearu Peterson | 2007-07-28 | 1 | -1/+7 |
| * | Trying to fix compiler wrarnings, 4. | Pearu Peterson | 2007-07-28 | 1 | -1/+2 |
| * | Trying to fix compiler wrarnings, 3. | Pearu Peterson | 2007-07-28 | 1 | -2/+3 |
| * | Trying to fix compiler wrarnings, 2. | Pearu Peterson | 2007-07-28 | 1 | -3/+3 |
| * | Trying to fix compiler wrarnings: conversion from 'double' to 'float' | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix mingw32 build. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Fix rint error and castings. | Pearu Peterson | 2007-07-28 | 1 | -2/+5 |
| * | Using DLL_IMPORT only when DISTUTILS_USE_SDK. | Pearu Peterson | 2007-07-28 | 1 | -0/+6 |
| * | Defining fabsf, hypotf, rintf when DISTUTILS_USE_SDK. | Pearu Peterson | 2007-07-28 | 1 | -0/+26 |
| * | Trying to use DL_IMPORT for logf, sqrtf. | Pearu Peterson | 2007-07-28 | 1 | -2/+2 |
| * | Trying to fix inconsisted dll linkage warning, 8: Dont understand why my chan... | Pearu Peterson | 2007-07-28 | 1 | -5/+0 |
| * | Trying to fix inconsisted dll linkage warning, 6. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix inconsisted dll linkage warning, 4. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix inconsisted dll linkage warning, 3. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix inconsisted dll linkage warning, 2. | Pearu Peterson | 2007-07-28 | 1 | -1/+1 |
| * | Trying to fix inconsisted dll linkage warning, clean up. | Pearu Peterson | 2007-07-28 | 1 | -0/+5 |
| * | Restore invariant of (x == (x/y)*y + (x%y)) by making integer division with m... | Travis Oliphant | 2007-04-24 | 1 | -3/+39 |
| * | Fix warnings found by Intel compiler due to unused variables that were set. ... | Travis Oliphant | 2006-12-02 | 1 | -6/+1 |
| * | Add print and log facilities to error handling and change the default error m... | Travis Oliphant | 2006-10-19 | 1 | -0/+3 |
| * | Add Object-type to maximum and minimum ufuncs. | Travis Oliphant | 2006-09-21 | 1 | -1/+34 |
| * | Fix rounding of integers with decimal < 0 | Travis Oliphant | 2006-09-04 | 1 | -0/+9 |
| * | Move complex multiply and divide from the generic interface to the specific i... | Travis Oliphant | 2006-08-23 | 1 | -15/+63 |
| * | Fix white-space issues. | Travis Oliphant | 2006-08-19 | 1 | -5/+5 |
| * | Fix prodi when intput and output are the same. This fixes a problem with arcsin | Travis Oliphant | 2006-07-31 | 1 | -3/+4 |
| * | Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr... | Travis Oliphant | 2006-07-08 | 1 | -1/+1 |
| * | Speed up mod function using fmod and add use_pythonmath and use_scalarmath fu... | Travis Oliphant | 2006-07-06 | 1 | -2/+5 |
| * | Make import_array and import_ufunc MACROS again. | Travis Oliphant | 2006-06-20 | 1 | -1/+1 |
| * | Remove broken optimization... | Travis Oliphant | 2006-06-01 | 1 | -16/+2 |
| * | Fix up warnings. | Travis Oliphant | 2006-05-13 | 1 | -28/+26 |
| * | Finish up scalarmath. Needs testing... | Travis Oliphant | 2006-04-28 | 1 | -7/+1 |
| * | Add a couple more ufunc API calls. Add more to scalarmath.c. Get rid of ove... | Travis Oliphant | 2006-04-27 | 1 | -224/+10 |
| * | Make ext module typespecs to use PyMODINIT_FUNC that is essential for mingw32... | Pearu Peterson | 2006-04-24 | 1 | -1/+1 |
| * | Change ...errlist to ...errobj | Travis Oliphant | 2006-04-18 | 1 | -2/+2 |
| * | Changed error look-up to use per-thread global variable. | Travis Oliphant | 2006-04-18 | 1 | -2/+4 |