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