diff options
author | Roy Smart <roytsmart@gmail.com> | 2023-02-24 17:16:32 -0700 |
---|---|---|
committer | Roy Smart <roytsmart@gmail.com> | 2023-03-06 02:43:57 -0700 |
commit | 3b89f5227e7d8f8eddd2959982efb6739efdb729 (patch) | |
tree | ed8fcef1a659acb52d791fcc82dc12b737c72def /doc | |
parent | b4f6b0b9d2af3e5a7ed0bfb51c8d692298bc2dde (diff) | |
download | numpy-3b89f5227e7d8f8eddd2959982efb6739efdb729.tar.gz |
ENH: Modify `numpy.logspace` so that the `base` argument broadcasts correctly against `start` and `stop`.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/23275.improvement.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/23275.improvement.rst b/doc/release/upcoming_changes/23275.improvement.rst new file mode 100644 index 000000000..14ed5d9ad --- /dev/null +++ b/doc/release/upcoming_changes/23275.improvement.rst @@ -0,0 +1,4 @@ +``numpy.logspace`` now supports a non-scalar ``base`` argument +-------------------------------------------------------------- +The ``base`` argument of ``numpy.logspace`` can now be array-like if it's +broadcastable against the ``start`` and ``stop`` arguments.
\ No newline at end of file |