diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-02-13 09:09:23 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-02-13 09:55:41 -0700 |
commit | f9c377680e8e30fe08495ef3181740437a4fb219 (patch) | |
tree | c9457a905aec07b655903b5fba29175df8d4ce5e /doc | |
parent | 3a4127bf53bc116eb5872d44e76ad498215b8637 (diff) | |
download | numpy-f9c377680e8e30fe08495ef3181740437a4fb219.tar.gz |
DOC: Document changes in npymath library.
Document the increased use of the system library for C99 complex
functions and the addition of improved fallback functions for
* npy_ctan,
* npy_cacos, npy_casin, npy_catan
* npy_ccosh, npy_csinh, npy_ctanh,
* npy_cacosh, npy_casinh, npy_catanh
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 ======= |