diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-07 18:50:08 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-07 18:50:08 +0000 |
commit | 5ee14815b3520074e73b2b2836a8a11de0cc9fc2 (patch) | |
tree | 086de6656a9d438f1f652a44279295d78b671435 /numpy/core/defmatrix.py | |
parent | 876176a0412c4fb22645edc531110d2a0a2fed16 (diff) | |
download | numpy-5ee14815b3520074e73b2b2836a8a11de0cc9fc2.tar.gz |
Add library of matrix functions.
Diffstat (limited to 'numpy/core/defmatrix.py')
-rw-r--r-- | numpy/core/defmatrix.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/core/defmatrix.py b/numpy/core/defmatrix.py index 7942e6a93..66057be17 100644 --- a/numpy/core/defmatrix.py +++ b/numpy/core/defmatrix.py @@ -1,5 +1,5 @@ -__all__ = ['matrix', 'bmat', 'mat', 'asmatrix', 'asmat'] +__all__ = ['matrix', 'bmat', 'mat', 'asmatrix'] import numeric as N from numeric import concatenate, isscalar, binary_repr @@ -362,5 +362,4 @@ def bmat(obj, ldict=None, gdict=None): if isinstance(obj, N.ndarray): return matrix(obj) -mat = matrix -asmat = asmatrix +mat = asmatrix |