summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Meurer <asmeurer@gmail.com>2022-12-12 18:32:09 -0700
committerAaron Meurer <asmeurer@gmail.com>2022-12-12 18:32:09 -0700
commit6618fbf0430971388919783e0548d8b5b23d2bf2 (patch)
tree4965ab5a38cc499888ef9909dca0e9cbb212df06
parent18e88b4a89a4cbc59bbb00423c957537fa9cdb58 (diff)
downloadnumpy-6618fbf0430971388919783e0548d8b5b23d2bf2.tar.gz
Add a changelog entry for #22786
-rw-r--r--doc/release/upcoming_changes/22786.new_feature.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/22786.new_feature.rst b/doc/release/upcoming_changes/22786.new_feature.rst
new file mode 100644
index 000000000..ccfd3cd5e
--- /dev/null
+++ b/doc/release/upcoming_changes/22786.new_feature.rst
@@ -0,0 +1,8 @@
+
+``np.linalg`` functions return namedtuples
+------------------------------------------
+
+``np.linalg`` functions that return tuples now return namedtuples. These
+functions are ``eig()``, ``eigh()``, ``qr()``, ``slogdet()``, and ``svd()``.
+The return type is unchanged in instances where these functions return
+non-tuples with certain keyword arguments (like ``svd(compute_uv=False)``).