diff options
author | alex <argriffi@ncsu.edu> | 2014-02-25 00:10:06 -0500 |
---|---|---|
committer | alex <argriffi@ncsu.edu> | 2014-02-25 00:10:06 -0500 |
commit | e4c274f70cf7d7109214b1811bda61e151f727d9 (patch) | |
tree | db5ce7a3debff7da9c9ef1c19851d65e80534fc3 | |
parent | 249c38e7e899803c3697bf81707f4f446a67c60a (diff) | |
download | numpy-e4c274f70cf7d7109214b1811bda61e151f727d9.tar.gz |
DOC: triu/tril broadcasting release notes
-rw-r--r-- | doc/release/1.9.0-notes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/1.9.0-notes.rst b/doc/release/1.9.0-notes.rst index 9550a2fcc..9a58cbf3a 100644 --- a/doc/release/1.9.0-notes.rst +++ b/doc/release/1.9.0-notes.rst @@ -81,6 +81,10 @@ Dtype parameter added to `np.linspace` and `np.logspace` The returned data type from the `linspace` and `logspace` functions can now be specificed using the dtype parameter. +More general `np.triu` and `np.tril` broadcasting +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +For arrays with `ndim` exceeding 2, these functions will now apply to the +final two axes instead of raising an exception. `tobytes` alias for `tostring` method ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |