blob: e88fc086fad26e5b0c5f1366e7a1f0b25106af15 (
plain)
1
2
3
4
5
6
7
8
|
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)
|