summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDiego Mesa <damesa@eng.ucsd.edu>2014-04-24 12:55:43 -0700
committerDiego Mesa <damesa@eng.ucsd.edu>2014-04-24 12:55:43 -0700
commit09db62b2cc079571842ab921cd6d2ba8bb2a8471 (patch)
tree5a84ed95585e8fdffd83b7ee20fddf44ef223833 /numpy
parentd0b3f8f4213ee2d285be7d410a0cd7a1a601a7bd (diff)
downloadnumpy-09db62b2cc079571842ab921cd6d2ba8bb2a8471.tar.gz
fixing poly2herm example
Diffstat (limited to 'numpy')
-rw-r--r--numpy/polynomial/hermite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py
index 713c780d3..43ede58ac 100644
--- a/numpy/polynomial/hermite.py
+++ b/numpy/polynomial/hermite.py
@@ -110,7 +110,7 @@ def poly2herm(pol) :
Examples
--------
- >>> from numpy.polynomial.hermite_e import poly2herme
+ >>> from numpy.polynomial.hermite import poly2herm
>>> poly2herm(np.arange(4))
array([ 1. , 2.75 , 0.5 , 0.375])