summaryrefslogtreecommitdiff
path: root/numpy/numarray/ufuncs.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/numarray/ufuncs.py')
-rw-r--r--numpy/numarray/ufuncs.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/numpy/numarray/ufuncs.py b/numpy/numarray/ufuncs.py
new file mode 100644
index 000000000..3fb5671ce
--- /dev/null
+++ b/numpy/numarray/ufuncs.py
@@ -0,0 +1,22 @@
+
+__all__ = ['abs', 'absolute', 'add', 'arccos', 'arccosh', 'arcsin', 'arcsinh',
+ 'arctan', 'arctan2', 'arctanh', 'bitwise_and', 'bitwise_not',
+ 'bitwise_or', 'bitwise_xor', 'ceil', 'cos', 'cosh', 'divide',
+ 'equal', 'exp', 'fabs', 'floor', 'floor_divide',
+ 'fmod', 'greater', 'greater_equal', 'hypot', 'isnan',
+ 'less', 'less_equal', 'log', 'log10', 'logical_and', 'logical_not',
+ 'logical_or', 'logical_xor', 'lshift', 'maximum', 'minimum',
+ 'minus', 'multiply', 'negative', 'not_equal',
+ 'power', 'product', 'remainder', 'rshift', 'sin', 'sinh', 'sqrt',
+ 'subtract', 'sum', 'tan', 'tanh', 'true_divide',
+ 'conjugate', 'sign']
+
+from numpy import absolute as abs, absolute, add, arccos, arccosh, arcsin, \
+ arcsinh, arctan, arctan2, arctanh, bitwise_and, invert as bitwise_not, \
+ bitwise_or, bitwise_xor, ceil, cos, cosh, divide, \
+ equal, exp, fabs, floor, floor_divide, fmod, greater, greater_equal, \
+ hypot, isnan, less, less_equal, log, log10, logical_and, \
+ logical_not, logical_or, logical_xor, left_shift as lshift, \
+ maximum, minimum, negative as minus, multiply, negative, \
+ not_equal, power, product, remainder, right_shift as rshift, sin, \
+ sinh, sqrt, subtract, sum, tan, tanh, true_divide, conjugate, sign