summaryrefslogtreecommitdiff
path: root/numpy/lib/scimath.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-05-15 11:13:46 -0600
committerGitHub <noreply@github.com>2018-05-15 11:13:46 -0600
commit79ec65de3064cbdc687820ab09f20b989028509d (patch)
treed1db3a47f86b4377738b433fc663a9ceef81597e /numpy/lib/scimath.py
parent9584c2f8ed78194ec18d20aea9616d4a89ee74fa (diff)
parent8e74c991d1336bd51e71dc492544223055c130f4 (diff)
downloadnumpy-79ec65de3064cbdc687820ab09f20b989028509d.tar.gz
Merge pull request #11010 from mhvk/poly-matrix-tests-to-matrixlib
Move remaining Matrix tests to matrixlib
Diffstat (limited to 'numpy/lib/scimath.py')
-rw-r--r--numpy/lib/scimath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/scimath.py b/numpy/lib/scimath.py
index e07caf805..f1838fee6 100644
--- a/numpy/lib/scimath.py
+++ b/numpy/lib/scimath.py
@@ -555,7 +555,7 @@ def arctanh(x):
--------
>>> np.set_printoptions(precision=4)
- >>> np.emath.arctanh(np.matrix(np.eye(2)))
+ >>> np.emath.arctanh(np.eye(2))
array([[ Inf, 0.],
[ 0., Inf]])
>>> np.emath.arctanh([1j])