diff options
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/upcoming_changes/22786.new_feature.rst | 8 |
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)``). |