summaryrefslogtreecommitdiff
path: root/numpy/core/src/npymath
Commit message (Expand)AuthorAgeFilesLines
* BUG: icc 11 requires complex double, complex alone is not enough to define a ...David Cournapeau2009-12-041-1/+1
* Another attempt at a truly cross-platform nextafterl implementationmdroe2009-11-132-188/+211
* BUG: do not use bitfields for bit-twidling of long doubles.David Cournapeau2009-11-122-99/+233
* ENH: add C implementation of spacing in npymath.David Cournapeau2009-11-101-0/+20
* ENH: make ieee754 a templated file, need for spacing.David Cournapeau2009-11-101-0/+0
* STY: fix hard tab.David Cournapeau2009-11-101-32/+32
* BUG: ppc on darwin has long double aligned on 16 bytes - adjust IEEEl2bits ac...David Cournapeau2009-11-091-0/+16
* ENH: add nextafterl implementation.David Cournapeau2009-11-091-7/+54
* ENH: define union to access exact binary content of long double representatio...David Cournapeau2009-11-091-0/+72
* BUG: float.h inclusion was lost somewhere.David Cournapeau2009-11-091-0/+1
* ENH: put all mandatory headers for npymath in one common header.David Cournapeau2009-11-095-21/+12
* BUG: do not include complex.h in public headers - this cannot work with C++, ...David Cournapeau2009-11-071-0/+4
* BUG: typo when defining internal nextafterf.David Cournapeau2009-11-051-1/+1
* BUG: add missing macros mandatory for internal nextafter implementation.David Cournapeau2009-11-051-0/+40
* BUG: forgot to remove npy_creal/cimag definition in npymath lib, redundant wi...David Cournapeau2009-11-041-2/+2
* ENH: optimize real/imag extraction function, by making them inline.David Cournapeau2009-11-041-24/+0
* Fix indentation for cexp.David Cournapeau2009-11-041-147/+147
* Handle special cases in our custom cexp function.David Cournapeau2009-11-041-4/+53
* Fix typos in some complex definitions.David Cournapeau2009-11-041-2/+2
* Mention difference between simple decorators and implementations for complex ...David Cournapeau2009-11-041-3/+7
* Implement float and long double versions of complex functions.David Cournapeau2009-11-042-87/+125
* Fix our private replacement to clog.David Cournapeau2009-11-041-1/+1
* MS compiler does not like funky initializer for float.David Cournapeau2009-11-041-1/+1
* Fix npy_creal/npy_cimag when no complex support is available.David Cournapeau2009-11-041-4/+10
* Use original npy complex type instead of custom one for npymath.David Cournapeau2009-11-042-27/+26
* Pull cpack into the npy math API, prefix it with npy_, and use it in npymath ...David Cournapeau2009-11-042-37/+13
* Fix csqrt so that only npy_fabs is used, not fabs.David Cournapeau2009-11-041-1/+1
* Fix csqrt so that it does not depend on complex support.David Cournapeau2009-11-041-2/+2
* Implement ccos, csin, clog, carg, cpow complex functions.David Cournapeau2009-11-041-3/+53
* Implement stubs for clog, ccos, csin and cpow.David Cournapeau2009-11-041-2/+18
* Implement csqrt.David Cournapeau2009-11-041-2/+69
* Add cexp function.David Cournapeau2009-11-041-0/+29
* Fix typo.David Cournapeau2009-11-041-1/+1
* Do not use union initializaer: another thing that MS compiler cannot handle.David Cournapeau2009-11-041-2/+4
* npymath now implements cabs, creal and cimag.David Cournapeau2009-11-042-36/+34
* Start implementing complex support.David Cournapeau2009-11-042-1/+128
* BUG: fix compilation of nextafter on MS platforms.David Cournapeau2009-10-301-3/+3
* ENH: implement single and double precision nextafter* for npymath.David Cournapeau2009-10-301-0/+164
* STY: fix indentation.David Cournapeau2009-10-301-9/+9
* REF: put low-leve IEEE-754 routines in separate file.David Cournapeau2009-10-302-30/+35
* Cleanup npy_math_private.hCharles Harris2009-10-201-33/+33
* Cleanup npy_math.c.src.Charles Harris2009-10-201-6/+6
* wrap config header with npy_config.hDavid Cournapeau2009-09-221-1/+1
* BUG: fix our copysign implementation.David Cournapeau2009-07-271-1/+1
* Add missing SET_HIGH_WORD and SET_LOW_WORD to do bitwise op on IEEE754 double...David Cournapeau2009-07-271-0/+20
* Add our own atan2 function, as a replacement for buggy implementations (like ...David Cournapeau2009-07-211-0/+89
* BUG: npy_math_private was using some endian-related macros without including ...David Cournapeau2009-07-211-4/+6
* BUG: fix logic OR vs. bitwise OR.David Cournapeau2009-07-201-1/+1
* Handle nan entries for hypot.David Cournapeau2009-07-201-1/+11
* Only use npy_-prefixed functions in npy_math.David Cournapeau2009-07-201-16/+16