summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2008-11-06 21:24:37 +0000
committerStefan van der Walt <stefan@sun.ac.za>2008-11-06 21:24:37 +0000
commit5b968f46761875623962c33f407ee15e4578b3a4 (patch)
tree7734a6aa926fe61414107ec1639e90609dc19203
parent6cb291a913c1e4f0d5fc18b88e58fb5bbbf50bf2 (diff)
downloadnumpy-5b968f46761875623962c33f407ee15e4578b3a4.tar.gz
Alphabetise some lists. Add logaddexp, deg2rad, rad2deg and trunc ufuncs.
-rw-r--r--trunk/source/reference/ufuncs.rst60
1 files changed, 32 insertions, 28 deletions
diff --git a/trunk/source/reference/ufuncs.rst b/trunk/source/reference/ufuncs.rst
index 570a1b156..523cf1a43 100644
--- a/trunk/source/reference/ufuncs.rst
+++ b/trunk/source/reference/ufuncs.rst
@@ -393,30 +393,31 @@ Math operations
.. autosummary::
+ absolute
add
- subtract
- multiply
+ conj
divide
- true_divide
+ exp
+ expm1
floor_divide
+ fmod
+ log
+ log1p
+ log10
+ logaddexp
+ mod
+ multiply
negative
+ ones_like
power
remainder
- mod
- fmod
- absolute
rint
+ reciprocal
sign
- conj
- exp
- log
- expm1
- log1p
- log10
sqrt
square
- reciprocal
- ones_like
+ subtract
+ true_divide
.. tip::
@@ -436,20 +437,22 @@ The ratio of degrees to radians is :math:`180^{\circ}/\pi.`
.. autosummary::
- sin
- cos
- tan
- arcsin
arccos
+ arcsin
arctan
+ arcsinh
+ arccosh
+ arctanh
arctan2
+ cos
+ cosh
+ deg2rad
hypot
+ rad2deg
+ sin
sinh
- cosh
+ tan
tanh
- arcsinh
- arccosh
- arctanh
Bit-twiddling functions
-----------------------
@@ -537,15 +540,16 @@ single operation.
.. autosummary::
- isreal
+ ceil
iscomplex
isfinite
isinf
isnan
- signbit
- modf
+ isreal
ldexp
- frexp
- fmod
+ modf
floor
- ceil
+ fmod
+ frexp
+ signbit
+ trunk