diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-08-13 08:49:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-13 08:49:40 -0500 |
commit | b35e181e27a3e70084ed25ac6d7a056b290caf1b (patch) | |
tree | 91ad9f70d8f642aaf64f2b60e3740136c596f72f /numpy/lib/function_base.py | |
parent | cf8397501603276ad30e03ba6bd84ca00b3c9eb4 (diff) | |
parent | 9ac8c04ba44f9caca0638495de9be2c95855f10d (diff) | |
download | numpy-b35e181e27a3e70084ed25ac6d7a056b290caf1b.tar.gz |
Merge pull request #11731 from matthew-brett/vectorize-doc-fix
DOC: fix typo in vectorize docstring
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 3ae8ed80a..2992e92bb 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1782,8 +1782,8 @@ class vectorize(object): Generalized function class. Define a vectorized function which takes a nested sequence of objects or - numpy arrays as inputs and returns an single or tuple of numpy array as - output. The vectorized function evaluates `pyfunc` over successive tuples + numpy arrays as inputs and returns a single numpy array or a tuple of numpy + arrays. The vectorized function evaluates `pyfunc` over successive tuples of the input arrays like the python map function, except it uses the broadcasting rules of numpy. |