diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-02-13 12:44:16 -0500 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-02-13 12:44:16 -0500 |
commit | 35d01b2a7cd38b2fda54b148402919aa1dd7e9c4 (patch) | |
tree | fc6d63cc63428520562c95361fe44fdb3240fa54 /doc | |
parent | ccc810e4a504e297bf5eae4523942d8bb46424fe (diff) | |
parent | f9c377680e8e30fe08495ef3181740437a4fb219 (diff) | |
download | numpy-35d01b2a7cd38b2fda54b148402919aa1dd7e9c4.tar.gz |
Merge pull request #5518 from charris/simple-gh-3010
BUG: Simplified fix, Overflow in tan and tanh for large complex values.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.10.0-notes.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index 43dc4b5c6..ec54b1f14 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -126,6 +126,19 @@ interpolation behavior. NumPy arrays are supported as input for ``pad_width``, and an exception is raised if its values are not of integral type. +More system C99 complex functions detected and used +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +All of the functions ``in complex.h`` are now detected. There are new +fallback implementations of the following functions. + +* npy_ctan, +* npy_cacos, npy_casin, npy_catan +* npy_ccosh, npy_csinh, npy_ctanh, +* npy_cacosh, npy_casinh, npy_catanh + +As a result of these improvements, there will be some small changes in +returned values, especially for corner cases. + Changes ======= |