summaryrefslogtreecommitdiff
path: root/doc/source/reference/random
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-11-29 15:01:28 +0200
committermattip <matti.picus@gmail.com>2019-11-29 15:01:28 +0200
commita2acfa6f2f99207fff87f19170cb4260b775d086 (patch)
tree302efa5ad88b39ea6b3e3ceef831afb59443b3af /doc/source/reference/random
parentbcd950f0a4b6617bc3111a0ffd8102475ad1c3be (diff)
downloadnumpy-a2acfa6f2f99207fff87f19170cb4260b775d086.tar.gz
API: rename functions in distributions.c,h
Diffstat (limited to 'doc/source/reference/random')
-rw-r--r--doc/source/reference/random/c-api.rst12
1 files changed, 2 insertions, 10 deletions
diff --git a/doc/source/reference/random/c-api.rst b/doc/source/reference/random/c-api.rst
index 1ec2207a2..6087dd117 100644
--- a/doc/source/reference/random/c-api.rst
+++ b/doc/source/reference/random/c-api.rst
@@ -69,10 +69,6 @@ The functions are named with the following cconventions:
.. c:function:: void random_standard_exponential_fill(bitgen_t *bitgen_state, npy_intp cnt, double *out)
-.. c:function:: double random_standard_exponential_zig(bitgen_t *bitgen_state)
-
-.. c:function:: void random_standard_exponential_zig_fill(bitgen_t *bitgen_state, npy_intp cnt, double *out)
-
.. c:function:: double random_standard_normal(bitgen_t* bitgen_state)
.. c:function:: void random_standard_normal_fill(bitgen_t *bitgen_state, npy_intp count, double *out)
@@ -87,12 +83,8 @@ The functions are named with the following cconventions:
.. c:function:: float random_standard_exponential_f(bitgen_t *bitgen_state)
-.. c:function:: float random_standard_exponential_zig_f(bitgen_t *bitgen_state)
-
.. c:function:: void random_standard_exponential_fill_f(bitgen_t *bitgen_state, npy_intp cnt, float *out)
-.. c:function:: void random_standard_exponential_zig_fill_f(bitgen_t *bitgen_state, npy_intp cnt, float *out)
-
.. c:function:: float random_standard_normal_f(bitgen_t* bitgen_state)
.. c:function:: float random_standard_gamma_f(bitgen_t *bitgen_state, float shape)
@@ -112,7 +104,7 @@ The functions are named with the following cconventions:
.. c:function:: double random_f(bitgen_t *bitgen_state, double dfnum, double dfden)
-.. c:function:: double random_standard_cauchy(bitgen_t *bitgen_state)
+.. c:function:: double random_cauchy(bitgen_t *bitgen_state)
.. c:function:: double random_pareto(bitgen_t *bitgen_state, double a)
@@ -130,7 +122,7 @@ The functions are named with the following cconventions:
.. c:function:: double random_rayleigh(bitgen_t *bitgen_state, double mode)
-.. c:function:: double random_standard_t(bitgen_t *bitgen_state, double df)
+.. c:function:: double random_student_t(bitgen_t *bitgen_state, double df)
.. c:function:: double random_noncentral_chisquare(bitgen_t *bitgen_state, double df,
double nonc)