diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 07:49:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-08 07:49:10 +0000 |
commit | 3e3dd665d89496da053f76f120d504e9f1bf1699 (patch) | |
tree | 46d7ffc835856c2520958562081fdbf67a476dd4 /numpy/numarray/ufuncs.py | |
parent | 50a50441a148a9ea3fbc1629e065d88a4f28a419 (diff) | |
download | numpy-3e3dd665d89496da053f76f120d504e9f1bf1699.tar.gz |
Add numarray compatibility.
Diffstat (limited to 'numpy/numarray/ufuncs.py')
-rw-r--r-- | numpy/numarray/ufuncs.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/numpy/numarray/ufuncs.py b/numpy/numarray/ufuncs.py new file mode 100644 index 000000000..b6e12cfe1 --- /dev/null +++ b/numpy/numarray/ufuncs.py @@ -0,0 +1,21 @@ + +__all__ = ['abs', 'absolute', 'add', 'arccos', 'arccosh', 'arcsin', 'arcsinh', + 'arctan', 'arctan2', 'arctanh', 'bitwise_and', 'bitwise_not', + 'bitwise_or', 'bitwise_xor', 'ceil', 'cos', 'cosh', 'cumproduct', + 'cumsum', 'divide', 'equal', 'exp', 'fabs', 'floor', 'floor_divide', + 'fmod', 'greater', 'greater_equal', 'hypot', 'ieeemask', 'isnan', + 'less', 'less_equal', 'log', 'log10', 'logical_and', 'logical_not', + 'logical_or', 'logical_xor', 'lshift', 'maximum', 'minimum', + 'minus', 'multiply', 'negative', 'nonzero', 'not_equal', + 'power', 'product', 'remainder', 'rshift', 'sin', 'sinh', 'sqrt', + 'subtract', 'sum', 'tan', 'tanh', 'true_divide'] + +from numpy import abs, absolute, add, arccos, arccosh, arcsin, arcsinh, \ + arctan, arctan2, arctanh, bitwise_and, bitwise_not, bitwise_or, \ + bitwise_xor, ceil, cos, cosh, cumproduct, cumsum, divide, equal, \ + exp, fabs, floor, floor_divide, fmod, greater, greater_equal, hypot, \ + ieeemask, isnan, less, less_equal, log, log10, logical_and, \ + logical_not, logical_or, logical_xor, lshift, maximum, minimum, \ + minus, multiply, negative, nonzero, not_equal, power, product, \ + remainder, rshift, sin, sinh, sqrt, subtract, sum, tan, tanh, \ + true_divide |