summaryrefslogtreecommitdiff
path: root/numpy/numarray/matrix.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/numarray/matrix.py')
-rw-r--r--numpy/numarray/matrix.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/numarray/matrix.py b/numpy/numarray/matrix.py
deleted file mode 100644
index e88fc086f..000000000
--- a/numpy/numarray/matrix.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from __future__ import division, absolute_import, print_function
-
-__all__ = ['Matrix']
-
-from numpy import matrix as _matrix
-
-def Matrix(data, typecode=None, copy=1, savespace=0):
- return _matrix(data, typecode, copy=copy)