summaryrefslogtreecommitdiff
path: root/numpy/numarray/matrix.py
blob: 86d79bbe21fef272796364dfe49e6c850d25b589 (plain)
1
2
3
4
5
6
7

__all__ = ['Matrix']

from numpy import matrix as _matrix

def Matrix(data, typecode=None, copy=1, savespace=0):
    return _matrix(data, typecode, copy=copy)