summaryrefslogtreecommitdiff
path: root/numpy/lib
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-05-11 09:37:16 -0600
committerCharles Harris <charlesr.harris@gmail.com>2016-05-11 09:37:16 -0600
commita7e9f4579fa14a3b72af6e723bcbe5549cd6f1c1 (patch)
tree4b3f9b7aa6b718590b6339de64f7621a956ed58a /numpy/lib
parent49d1298cbaf41077f22b08cc2d9bf0e482d1e374 (diff)
parenta9465db4c70f9cd9c3fb9010229aadc7ec5fdc9c (diff)
downloadnumpy-a7e9f4579fa14a3b72af6e723bcbe5549cd6f1c1.tar.gz
Merge pull request #7618 from ahaldane/gradient_docstring
BUG: distance arg of np.gradient must be scalar, fix docstring
Diffstat (limited to 'numpy/lib')
-rw-r--r--numpy/lib/function_base.py12
-rw-r--r--numpy/lib/tests/test_function_base.py3
2 files changed, 10 insertions, 5 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index b119f667a..e858ad1c3 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -1410,9 +1410,10 @@ def gradient(f, *varargs, **kwargs):
Returns
-------
- gradient : list of ndarray
- Each element of `list` has the same shape as `f` giving the derivative
- of `f` with respect to each dimension.
+ gradient : ndarray or list of ndarray
+ A set of ndarrays (or a single ndarray if there is only one dimension)
+ correposnding to the derivatives of f with respect to each dimension.
+ Each derivative has the same shape as f.
Examples
--------
@@ -1432,9 +1433,8 @@ def gradient(f, *varargs, **kwargs):
[ 1. , 1. , 1. ]])]
>>> x = np.array([0, 1, 2, 3, 4])
- >>> dx = np.gradient(x)
>>> y = x**2
- >>> np.gradient(y, dx, edge_order=2)
+ >>> np.gradient(y, edge_order=2)
array([-0., 2., 4., 6., 8.])
The axis keyword can be used to specify a subset of axes of which the gradient is calculated
@@ -1472,6 +1472,8 @@ def gradient(f, *varargs, **kwargs):
else:
raise SyntaxError(
"invalid number of arguments")
+ if any([not np.isscalar(dxi) for dxi in dx]):
+ raise ValueError("distances must be scalars")
edge_order = kwargs.pop('edge_order', 1)
if kwargs:
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py
index 34dfd5ecc..044279294 100644
--- a/numpy/lib/tests/test_function_base.py
+++ b/numpy/lib/tests/test_function_base.py
@@ -666,6 +666,9 @@ class TestGradient(TestCase):
assert_raises(SyntaxError, gradient, x, np.array([1., 1.]),
np.array([1., 1.]), np.array([1., 1.]))
+ # disallow arrays as distances, see gh-6847
+ assert_raises(ValueError, gradient, np.arange(5), np.ones(5))
+
def test_masked(self):
# Make sure that gradient supports subclasses like masked arrays
x = np.ma.array([[1, 1], [3, 4]],