diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 01:21:44 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-05 01:21:44 +0000 |
commit | 5b83476f1ea82ce4655f5030e3081cb49e3315ce (patch) | |
tree | 3e5e9e06ad54898a792a05a39fece324560254af /numpy/core/defmatrix.py | |
parent | 2f01cc8b3c368242224f7ff63e1e5343cf890e9c (diff) | |
download | numpy-5b83476f1ea82ce4655f5030e3081cb49e3315ce.tar.gz |
Made matrix tests work.
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r-- | numpy/core/defmatrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py index 4b6f4bc2c..547bfe493 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.corelinalg import inv + from numpy.linalg import inv return matrix(inv(self)) A = property(getA, None, doc="base array") |