diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-03-12 02:33:38 +0000 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2017-12-12 20:58:08 -0800 |
commit | 7ab0f15250f5965a1e47e419597ca358e9b31a75 (patch) | |
tree | 4ec18b0c07a65bc607360bbb2e7cfc699a136348 /doc/source/reference | |
parent | 356b481bcf8783a4ecca6aaa7d7712e347c16101 (diff) | |
download | numpy-7ab0f15250f5965a1e47e419597ca358e9b31a75.tar.gz |
ENH: Add gcd and lcm ufuncs
Fixes #8772
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/routines.math.rst | 8 | ||||
-rw-r--r-- | doc/source/reference/ufuncs.rst | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/source/reference/routines.math.rst b/doc/source/reference/routines.math.rst index 4c2f2800a..821363987 100644 --- a/doc/source/reference/routines.math.rst +++ b/doc/source/reference/routines.math.rst @@ -101,6 +101,14 @@ Floating point routines nextafter spacing +Rational routines +----------------- +.. autosummary:: + :toctree: generated/ + + lcm + gcd + Arithmetic operations --------------------- .. autosummary:: diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index 38f2926f7..3711f660f 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -550,6 +550,8 @@ Math operations square cbrt reciprocal + gcd + lcm .. tip:: |