diff options
author | Marten van Kerkwijk <mhvk@astro.utoronto.ca> | 2018-04-29 17:13:49 -0400 |
---|---|---|
committer | Marten van Kerkwijk <mhvk@astro.utoronto.ca> | 2018-04-29 17:37:57 -0400 |
commit | 1394d0a723832d22ca749e402975786c7707fe02 (patch) | |
tree | dea061c4936c36c797567e018f12270d071be69a /numpy/lib/scimath.py | |
parent | d7e0c7e34b293ab32a46960c65d063446115d4e8 (diff) | |
download | numpy-1394d0a723832d22ca749e402975786c7707fe02.tar.gz |
MAINT: move matrix tests in lib to matrixlib.
Diffstat (limited to 'numpy/lib/scimath.py')
-rw-r--r-- | numpy/lib/scimath.py | 2 |
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]) |