From b772c977e5d4d71c78919ef941858ad438ee4986 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Thu, 10 Aug 2006 11:55:33 +0000 Subject: Update C-API to add features needed for numarray compatibility. Output argument added for several functions and clipmode argument added for a few others. --- numpy/numarray/ufuncs.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'numpy/numarray/ufuncs.py') diff --git a/numpy/numarray/ufuncs.py b/numpy/numarray/ufuncs.py index 685b76587..3fb5671ce 100644 --- a/numpy/numarray/ufuncs.py +++ b/numpy/numarray/ufuncs.py @@ -8,7 +8,8 @@ __all__ = ['abs', 'absolute', 'add', 'arccos', 'arccosh', 'arcsin', 'arcsinh', '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'] + '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, \ @@ -18,4 +19,4 @@ from numpy import absolute as abs, absolute, add, arccos, arccosh, arcsin, \ 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 + sinh, sqrt, subtract, sum, tan, tanh, true_divide, conjugate, sign -- cgit v1.2.1