diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
commit | fe002b2916a5928463f7c46c5c4875114228bf7f (patch) | |
tree | 1f56e956eae72299b91a84b2cf6874f7ec73d4fa /numpy/lib/index_tricks.py | |
parent | ec7f9dcddd216019bcf15d162926c4df6355860e (diff) | |
download | numpy-fe002b2916a5928463f7c46c5c4875114228bf7f.tar.gz |
Move matrix class into its own module.
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index eeb1d37aa..f6450d305 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -14,7 +14,7 @@ from numpy.core.numerictypes import find_common_type import math import function_base -import numpy.core.defmatrix as matrix +import numpy.matrx as matrix from function_base import diff makemat = matrix.matrix |