diff options
author | sasha <sasha@localhost> | 2006-02-24 00:37:16 +0000 |
---|---|---|
committer | sasha <sasha@localhost> | 2006-02-24 00:37:16 +0000 |
commit | adc21734b3b1d5bfdf027c4966fba3bbece12468 (patch) | |
tree | 14a6f94fb857ab199bd1b1e8707651cf9f820443 /numpy/core/ma.py | |
parent | 9f395ae6f261a879ef9311a0c0b7f5b7eec97693 (diff) | |
download | numpy-adc21734b3b1d5bfdf027c4966fba3bbece12468.tar.gz |
added rint ufunc and ndarray.round
Diffstat (limited to 'numpy/core/ma.py')
-rw-r--r-- | numpy/core/ma.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/ma.py b/numpy/core/ma.py index ae10ca681..b0a9bd5da 100644 --- a/numpy/core/ma.py +++ b/numpy/core/ma.py @@ -2180,6 +2180,7 @@ array.trace = _m(not_implemented) array.transpose = _m(transpose) array.var = _m(not_implemented) array.view = _m(not_implemented) +array.round = _m(around) del _m, MethodType, not_implemented |