diff options
author | martinosorb <martino.sorbaro@ed.ac.uk> | 2016-11-13 17:00:13 +0000 |
---|---|---|
committer | martinosorb <martino.sorbaro@ed.ac.uk> | 2016-11-13 17:00:13 +0000 |
commit | 1f764dbff7c496d6636dc0430f083ada9ff4e4be (patch) | |
tree | c8bb51ac780d16baaea1d4dd979a77ab226055f5 /doc | |
parent | a7d244ce2257c4e5115cf802fe34e8ad57bb8e54 (diff) | |
download | numpy-1f764dbff7c496d6636dc0430f083ada9ff4e4be.tar.gz |
Added axis argument to numpy.unique
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/1.13.0-notes.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/release/1.13.0-notes.rst b/doc/release/1.13.0-notes.rst index a7e4fe1a8..a7a40bbc0 100644 --- a/doc/release/1.13.0-notes.rst +++ b/doc/release/1.13.0-notes.rst @@ -35,6 +35,11 @@ C API New Features ============ +``axes`` argument for ``unique`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In an N-dimensional array, the user can now choose the axis along which to look +for duplicate N-1-dimensional elements using ``numpy.unique``. The original +behaviour is recovered if ``axis=None`` (default). Improvements ============ @@ -46,4 +51,3 @@ Changes Deprecations ============ - |