From 7db8f2f1a190daec6c3948bf58c7f63c29d85e72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 21 Jun 2016 20:33:42 +0200 Subject: [PATCH] Remove documentation of factorial(n,k) This method for `factorial' has been moved to Combinatorics packages. --- base/docs/helpdb/Base.jl | 7 ------- doc/stdlib/math.rst | 6 ------ 2 files changed, 13 deletions(-) diff --git a/base/docs/helpdb/Base.jl b/base/docs/helpdb/Base.jl index ad8b9d701af67..41be192c95955 100644 --- a/base/docs/helpdb/Base.jl +++ b/base/docs/helpdb/Base.jl @@ -6993,13 +6993,6 @@ If `n` is not an `Integer`, `factorial(n)` is equivalent to [`gamma(n+1)`](:func """ factorial(n) -""" - factorial(n,k) - -Compute `factorial(n)/factorial(k)`. -""" -factorial(n,k) - """ bitrand([rng], [dims...]) diff --git a/doc/stdlib/math.rst b/doc/stdlib/math.rst index 6afa6e018046a..970f1e8e75b58 100644 --- a/doc/stdlib/math.rst +++ b/doc/stdlib/math.rst @@ -1347,12 +1347,6 @@ Mathematical Functions Factorial of ``n``\ . If ``n`` is an :obj:`Integer`\ , the factorial is computed as an integer (promoted to at least 64 bits). Note that this may overflow if ``n`` is not small, but you can use ``factorial(big(n))`` to compute the result exactly in arbitrary precision. If ``n`` is not an ``Integer``\ , ``factorial(n)`` is equivalent to :func:`gamma(n+1) `\ . -.. function:: factorial(n,k) - - .. Docstring generated from Julia source - - Compute ``factorial(n)/factorial(k)``\ . - .. function:: gcd(x,y) .. Docstring generated from Julia source