diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-25 10:19:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-25 10:19:10 +0000 |
commit | 5fa9528d94fa8512a6ce1017b965f2701ce54e96 (patch) | |
tree | ddbe159b186227f8fcb0e28c5e011c438f31bbd0 /scipy/base/matrix.py | |
parent | 25ddd8d255ecc33d6c5a8b1d0a428ac8961987f7 (diff) | |
download | numpy-5fa9528d94fa8512a6ce1017b965f2701ce54e96.tar.gz |
Eliminate basic and move everything to corefft, corelinalg, or corerandom
Diffstat (limited to 'scipy/base/matrix.py')
-rw-r--r-- | scipy/base/matrix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/base/matrix.py b/scipy/base/matrix.py index 447cffb00..7729703be 100644 --- a/scipy/base/matrix.py +++ b/scipy/base/matrix.py @@ -199,8 +199,8 @@ class matrix(N.ndarray): return self.transpose() def getI(self): - from scipy.basic import linalg - return matrix(linalg.inv(self)) + from scipy.corelinalg import inv + return matrix(inv(self)) A = property(getA, None, doc="base array") T = property(getT, None, doc="transpose") |