summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoe Kington <joferkington@gmail.com>2012-03-04 14:18:27 -0600
committerCharles Harris <charlesr.harris@gmail.com>2012-03-04 15:22:54 -0700
commitb9f0f1f8b54d0e4cf74ea5e7d80893d66585c4a1 (patch)
tree370d57b07a38d6ceb5c5a4bc071a5f7c317da948 /doc
parent07e640c634ae7e7f859b3def5783e2e50b6002f4 (diff)
downloadnumpy-b9f0f1f8b54d0e4cf74ea5e7d80893d66585c4a1.tar.gz
ENH: Made "isclose()" NA-aware, added release note and versionadded.
Diffstat (limited to 'doc')
-rw-r--r--doc/release/2.0.0-notes.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst
index defdc9c00..7c2bfa8a5 100644
--- a/doc/release/2.0.0-notes.rst
+++ b/doc/release/2.0.0-notes.rst
@@ -94,6 +94,13 @@ A generic sampling function has been added which will generate samples from
a given array-like. The samples can be with or without replacement, and
with uniform or given non-uniform probabilities.
+New function isclose
+--------------------
+
+Returns a boolean array where two arrays are element-wise equal within a
+tolerance. Both relative and absolute tolerance can be specified. The
+function is NA aware.
+
Preliminary multi-dimensional support in the polynomial package
---------------------------------------------------------------