blob: bd10f82789f23c9edb6c0f3e6b41ba95ec99b978 (
plain)
1
2
3
4
5
6
7
8
|
from __future__ import division, absolute_import
__all__ = ['Matrix']
from numpy import matrix as _matrix
def Matrix(data, typecode=None, copy=1, savespace=0):
return _matrix(data, typecode, copy=copy)
|