summaryrefslogtreecommitdiff
path: root/numpy/core/defmatrix.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-05 08:36:12 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-05 08:36:12 +0000
commit4dd79b090e85566d3d3290357c3a9bbdd2558dc1 (patch)
tree6044831ae1bc79a09887b73c9fbf0bf91ece1532 /numpy/core/defmatrix.py
parentde399f0bc36d35703bb87a79ce3510c7ccada586 (diff)
downloadnumpy-4dd79b090e85566d3d3290357c3a9bbdd2558dc1.tar.gz
Added i0 natively for kaiser window
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r--numpy/core/defmatrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py
index 547bfe493..a3f161384 100644
--- a/numpy/core/defmatrix.py
+++ b/numpy/core/defmatrix.py
@@ -199,7 +199,7 @@ class matrix(N.ndarray):
return self.transpose()
def getI(self):
- from numpy.linalg import inv
+ from numpy.dual import inv
return matrix(inv(self))
A = property(getA, None, doc="base array")