diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-08 05:22:32 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-08 05:22:32 +0000 |
commit | 21d16bd6429b919f33056ce88d05aa2404f1a65e (patch) | |
tree | cc2d518d3546299d8f6a62404af0b97f9fe337be /scipy/base/matrix.py | |
parent | bb644a0eb115f75efe4f3960d3e8e386fcefb70e (diff) | |
download | numpy-21d16bd6429b919f33056ce88d05aa2404f1a65e.tar.gz |
Fixed some typecode initilization warnings. Made core libraries accessible directly under scipy name space.
Diffstat (limited to 'scipy/base/matrix.py')
-rw-r--r-- | scipy/base/matrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/matrix.py b/scipy/base/matrix.py index 511039bc9..525899ae7 100644 --- a/scipy/base/matrix.py +++ b/scipy/base/matrix.py @@ -189,7 +189,7 @@ class matrix(N.ndarray): return self.transpose() def getI(self): - from scipy.basic.linalg import inv + from scipy.linalg import inv return matrix(inv(self)) A = property(getA, None, doc="base array") |