diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-04-04 21:49:12 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-04-04 21:49:12 -0600 |
commit | b2d5a7b89a64f2eb491e88a67a155a4e9ab6ff1b (patch) | |
tree | 8bda5979385a41d21c41bd6c654f9b327edc2cbb /numpy/add_newdocs.py | |
parent | 3deaf33f3f36bafd7dcfc37f6b3b690f17802681 (diff) | |
parent | 13dd07ad8d97920f8c6ea2933b7e19e5abb158b2 (diff) | |
download | numpy-b2d5a7b89a64f2eb491e88a67a155a4e9ab6ff1b.tar.gz |
Merge pull request #7508 from endolith/vectorize
DOC: link frompyfunc and vectorize
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 0341a032f..055c23480 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -4852,6 +4852,10 @@ add_newdoc('numpy.core.umath', 'frompyfunc', out : ufunc Returns a Numpy universal function (``ufunc``) object. + See Also + -------- + vectorize : evaluates pyfunc over input arrays using broadcasting rules of numpy + Notes ----- The returned ufunc always returns PyObject arrays. |