diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-04 08:55:40 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-04 08:55:40 +0000 |
commit | 0dc618c68c96495c7bbff23d28d1126aeb5e3e06 (patch) | |
tree | 75ea888a9b626d3bb8d1ca8b4e7f4eafe9406114 | |
parent | 6a665e063cd0d48a5c628ac905d45e5c30336333 (diff) | |
download | numpy-0dc618c68c96495c7bbff23d28d1126aeb5e3e06.tar.gz |
Mention C99 complex support in release notes.
-rw-r--r-- | doc/release/1.4.0-notes.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/release/1.4.0-notes.rst b/doc/release/1.4.0-notes.rst index d85fbef23..412476400 100644 --- a/doc/release/1.4.0-notes.rst +++ b/doc/release/1.4.0-notes.rst @@ -133,6 +133,13 @@ The following functions are deprecated: Internal changes ================ +Use C99 complex functions when available +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The numpy complex types are now guaranteed to be ABI compatible with C99 +complex type, if availble on the platform. Moreoever, the complex ufunc now use +the platform C99 functions intead of our own. + split multiarray and umath source code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -155,3 +162,14 @@ Separate core math library New functions which have been added: * npy_copysign + * npy_nextafter + * npy_cpack + * npy_creal + * npy_cimag + * npy_cabs + * npy_cexp + * npy_clog + * npy_cpow + * npy_csqr + * npy_ccos + * npy_csin |