diff options
Diffstat (limited to 'numpy/numarray/matrix.py')
-rw-r--r-- | numpy/numarray/matrix.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/numpy/numarray/matrix.py b/numpy/numarray/matrix.py new file mode 100644 index 000000000..a39812e1f --- /dev/null +++ b/numpy/numarray/matrix.py @@ -0,0 +1,8 @@ + +__all__ = ['Matrix'] + +from numpy import matrix as _matrix + +def Matrix(data, typecode=None, copy=1, savespace=0): + return _matrix(data, typecode, copy=copy) + |