diff options
author | endolith <endolith@gmail.com> | 2016-04-04 21:49:44 -0400 |
---|---|---|
committer | Endolith <endolith@gmail.com> | 2016-04-04 21:56:21 -0400 |
commit | 13dd07ad8d97920f8c6ea2933b7e19e5abb158b2 (patch) | |
tree | 7c7d78c494f379e09e68b8875166ce0cdf01624a /numpy/lib/function_base.py | |
parent | c6e65b7aa63bf5f81b83abd54347d9cdd3a286e5 (diff) | |
download | numpy-13dd07ad8d97920f8c6ea2933b7e19e5abb158b2.tar.gz |
DOC: link frompyfunc and vectorize
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 5453f52fa..77fe5cef2 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -2208,6 +2208,10 @@ class vectorize(object): >>> vpolyval([1, 2, 3], x=[0, 1]) array([3, 6]) + See Also + -------- + frompyfunc : Takes an arbitrary Python function and returns a ufunc + Notes ----- The `vectorize` function is provided primarily for convenience, not for |