File size: 31,470 Bytes
7885a28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
# This file is automatically generated by _generate_pyx.py.
# Do not edit manually!

from libc.math cimport NAN

include "_ufuncs_extra_code_common.pxi"

cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_beta_pdf_float "beta_pdf_float"(float, float, float) noexcept nogil
cdef void *_export_beta_pdf_float = <void*>_func_beta_pdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_beta_pdf_double "beta_pdf_double"(double, double, double) noexcept nogil
cdef void *_export_beta_pdf_double = <void*>_func_beta_pdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_beta_ppf_float "beta_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_beta_ppf_float = <void*>_func_beta_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_beta_ppf_double "beta_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_beta_ppf_double = <void*>_func_beta_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_binom_cdf_float "binom_cdf_float"(float, float, float) noexcept nogil
cdef void *_export_binom_cdf_float = <void*>_func_binom_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_binom_cdf_double "binom_cdf_double"(double, double, double) noexcept nogil
cdef void *_export_binom_cdf_double = <void*>_func_binom_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_binom_isf_float "binom_isf_float"(float, float, float) noexcept nogil
cdef void *_export_binom_isf_float = <void*>_func_binom_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_binom_isf_double "binom_isf_double"(double, double, double) noexcept nogil
cdef void *_export_binom_isf_double = <void*>_func_binom_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_binom_pmf_float "binom_pmf_float"(float, float, float) noexcept nogil
cdef void *_export_binom_pmf_float = <void*>_func_binom_pmf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_binom_pmf_double "binom_pmf_double"(double, double, double) noexcept nogil
cdef void *_export_binom_pmf_double = <void*>_func_binom_pmf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_binom_ppf_float "binom_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_binom_ppf_float = <void*>_func_binom_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_binom_ppf_double "binom_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_binom_ppf_double = <void*>_func_binom_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_binom_sf_float "binom_sf_float"(float, float, float) noexcept nogil
cdef void *_export_binom_sf_float = <void*>_func_binom_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_binom_sf_double "binom_sf_double"(double, double, double) noexcept nogil
cdef void *_export_binom_sf_double = <void*>_func_binom_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_cauchy_isf_float "cauchy_isf_float"(float, float, float) noexcept nogil
cdef void *_export_cauchy_isf_float = <void*>_func_cauchy_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_cauchy_isf_double "cauchy_isf_double"(double, double, double) noexcept nogil
cdef void *_export_cauchy_isf_double = <void*>_func_cauchy_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_cauchy_ppf_float "cauchy_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_cauchy_ppf_float = <void*>_func_cauchy_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_cauchy_ppf_double "cauchy_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_cauchy_ppf_double = <void*>_func_cauchy_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_cdf_float "hypergeom_cdf_float"(float, float, float, float) noexcept nogil
cdef void *_export_hypergeom_cdf_float = <void*>_func_hypergeom_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_cdf_double "hypergeom_cdf_double"(double, double, double, double) noexcept nogil
cdef void *_export_hypergeom_cdf_double = <void*>_func_hypergeom_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_mean_float "hypergeom_mean_float"(float, float, float) noexcept nogil
cdef void *_export_hypergeom_mean_float = <void*>_func_hypergeom_mean_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_mean_double "hypergeom_mean_double"(double, double, double) noexcept nogil
cdef void *_export_hypergeom_mean_double = <void*>_func_hypergeom_mean_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_pmf_float "hypergeom_pmf_float"(float, float, float, float) noexcept nogil
cdef void *_export_hypergeom_pmf_float = <void*>_func_hypergeom_pmf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_pmf_double "hypergeom_pmf_double"(double, double, double, double) noexcept nogil
cdef void *_export_hypergeom_pmf_double = <void*>_func_hypergeom_pmf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_sf_float "hypergeom_sf_float"(float, float, float, float) noexcept nogil
cdef void *_export_hypergeom_sf_float = <void*>_func_hypergeom_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_sf_double "hypergeom_sf_double"(double, double, double, double) noexcept nogil
cdef void *_export_hypergeom_sf_double = <void*>_func_hypergeom_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_skewness_float "hypergeom_skewness_float"(float, float, float) noexcept nogil
cdef void *_export_hypergeom_skewness_float = <void*>_func_hypergeom_skewness_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_skewness_double "hypergeom_skewness_double"(double, double, double) noexcept nogil
cdef void *_export_hypergeom_skewness_double = <void*>_func_hypergeom_skewness_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_hypergeom_variance_float "hypergeom_variance_float"(float, float, float) noexcept nogil
cdef void *_export_hypergeom_variance_float = <void*>_func_hypergeom_variance_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hypergeom_variance_double "hypergeom_variance_double"(double, double, double) noexcept nogil
cdef void *_export_hypergeom_variance_double = <void*>_func_hypergeom_variance_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_invgauss_isf_float "invgauss_isf_float"(float, float, float) noexcept nogil
cdef void *_export_invgauss_isf_float = <void*>_func_invgauss_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_invgauss_isf_double "invgauss_isf_double"(double, double, double) noexcept nogil
cdef void *_export_invgauss_isf_double = <void*>_func_invgauss_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_invgauss_ppf_float "invgauss_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_invgauss_ppf_float = <void*>_func_invgauss_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_invgauss_ppf_double "invgauss_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_invgauss_ppf_double = <void*>_func_invgauss_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_landau_cdf_float "landau_cdf_float"(float, float, float) noexcept nogil
cdef void *_export_landau_cdf_float = <void*>_func_landau_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_landau_cdf_double "landau_cdf_double"(double, double, double) noexcept nogil
cdef void *_export_landau_cdf_double = <void*>_func_landau_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_landau_isf_float "landau_isf_float"(float, float, float) noexcept nogil
cdef void *_export_landau_isf_float = <void*>_func_landau_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_landau_isf_double "landau_isf_double"(double, double, double) noexcept nogil
cdef void *_export_landau_isf_double = <void*>_func_landau_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_landau_pdf_float "landau_pdf_float"(float, float, float) noexcept nogil
cdef void *_export_landau_pdf_float = <void*>_func_landau_pdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_landau_pdf_double "landau_pdf_double"(double, double, double) noexcept nogil
cdef void *_export_landau_pdf_double = <void*>_func_landau_pdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_landau_ppf_float "landau_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_landau_ppf_float = <void*>_func_landau_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_landau_ppf_double "landau_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_landau_ppf_double = <void*>_func_landau_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_landau_sf_float "landau_sf_float"(float, float, float) noexcept nogil
cdef void *_export_landau_sf_float = <void*>_func_landau_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_landau_sf_double "landau_sf_double"(double, double, double) noexcept nogil
cdef void *_export_landau_sf_double = <void*>_func_landau_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_cdf_float "nbinom_cdf_float"(float, float, float) noexcept nogil
cdef void *_export_nbinom_cdf_float = <void*>_func_nbinom_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_cdf_double "nbinom_cdf_double"(double, double, double) noexcept nogil
cdef void *_export_nbinom_cdf_double = <void*>_func_nbinom_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_isf_float "nbinom_isf_float"(float, float, float) noexcept nogil
cdef void *_export_nbinom_isf_float = <void*>_func_nbinom_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_isf_double "nbinom_isf_double"(double, double, double) noexcept nogil
cdef void *_export_nbinom_isf_double = <void*>_func_nbinom_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_kurtosis_excess_float "nbinom_kurtosis_excess_float"(float, float) noexcept nogil
cdef void *_export_nbinom_kurtosis_excess_float = <void*>_func_nbinom_kurtosis_excess_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_kurtosis_excess_double "nbinom_kurtosis_excess_double"(double, double) noexcept nogil
cdef void *_export_nbinom_kurtosis_excess_double = <void*>_func_nbinom_kurtosis_excess_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_mean_float "nbinom_mean_float"(float, float) noexcept nogil
cdef void *_export_nbinom_mean_float = <void*>_func_nbinom_mean_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_mean_double "nbinom_mean_double"(double, double) noexcept nogil
cdef void *_export_nbinom_mean_double = <void*>_func_nbinom_mean_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_pmf_float "nbinom_pmf_float"(float, float, float) noexcept nogil
cdef void *_export_nbinom_pmf_float = <void*>_func_nbinom_pmf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_pmf_double "nbinom_pmf_double"(double, double, double) noexcept nogil
cdef void *_export_nbinom_pmf_double = <void*>_func_nbinom_pmf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_ppf_float "nbinom_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_nbinom_ppf_float = <void*>_func_nbinom_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_ppf_double "nbinom_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_nbinom_ppf_double = <void*>_func_nbinom_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_sf_float "nbinom_sf_float"(float, float, float) noexcept nogil
cdef void *_export_nbinom_sf_float = <void*>_func_nbinom_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_sf_double "nbinom_sf_double"(double, double, double) noexcept nogil
cdef void *_export_nbinom_sf_double = <void*>_func_nbinom_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_skewness_float "nbinom_skewness_float"(float, float) noexcept nogil
cdef void *_export_nbinom_skewness_float = <void*>_func_nbinom_skewness_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_skewness_double "nbinom_skewness_double"(double, double) noexcept nogil
cdef void *_export_nbinom_skewness_double = <void*>_func_nbinom_skewness_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nbinom_variance_float "nbinom_variance_float"(float, float) noexcept nogil
cdef void *_export_nbinom_variance_float = <void*>_func_nbinom_variance_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nbinom_variance_double "nbinom_variance_double"(double, double) noexcept nogil
cdef void *_export_nbinom_variance_double = <void*>_func_nbinom_variance_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_isf_float "ncf_isf_float"(float, float, float, float) noexcept nogil
cdef void *_export_ncf_isf_float = <void*>_func_ncf_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_isf_double "ncf_isf_double"(double, double, double, double) noexcept nogil
cdef void *_export_ncf_isf_double = <void*>_func_ncf_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_kurtosis_excess_float "ncf_kurtosis_excess_float"(float, float, float) noexcept nogil
cdef void *_export_ncf_kurtosis_excess_float = <void*>_func_ncf_kurtosis_excess_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_kurtosis_excess_double "ncf_kurtosis_excess_double"(double, double, double) noexcept nogil
cdef void *_export_ncf_kurtosis_excess_double = <void*>_func_ncf_kurtosis_excess_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_mean_float "ncf_mean_float"(float, float, float) noexcept nogil
cdef void *_export_ncf_mean_float = <void*>_func_ncf_mean_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_mean_double "ncf_mean_double"(double, double, double) noexcept nogil
cdef void *_export_ncf_mean_double = <void*>_func_ncf_mean_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_pdf_float "ncf_pdf_float"(float, float, float, float) noexcept nogil
cdef void *_export_ncf_pdf_float = <void*>_func_ncf_pdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_pdf_double "ncf_pdf_double"(double, double, double, double) noexcept nogil
cdef void *_export_ncf_pdf_double = <void*>_func_ncf_pdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_sf_float "ncf_sf_float"(float, float, float, float) noexcept nogil
cdef void *_export_ncf_sf_float = <void*>_func_ncf_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_sf_double "ncf_sf_double"(double, double, double, double) noexcept nogil
cdef void *_export_ncf_sf_double = <void*>_func_ncf_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_skewness_float "ncf_skewness_float"(float, float, float) noexcept nogil
cdef void *_export_ncf_skewness_float = <void*>_func_ncf_skewness_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_skewness_double "ncf_skewness_double"(double, double, double) noexcept nogil
cdef void *_export_ncf_skewness_double = <void*>_func_ncf_skewness_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_variance_float "ncf_variance_float"(float, float, float) noexcept nogil
cdef void *_export_ncf_variance_float = <void*>_func_ncf_variance_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_variance_double "ncf_variance_double"(double, double, double) noexcept nogil
cdef void *_export_ncf_variance_double = <void*>_func_ncf_variance_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_isf_float "nct_isf_float"(float, float, float) noexcept nogil
cdef void *_export_nct_isf_float = <void*>_func_nct_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_isf_double "nct_isf_double"(double, double, double) noexcept nogil
cdef void *_export_nct_isf_double = <void*>_func_nct_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_kurtosis_excess_float "nct_kurtosis_excess_float"(float, float) noexcept nogil
cdef void *_export_nct_kurtosis_excess_float = <void*>_func_nct_kurtosis_excess_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_kurtosis_excess_double "nct_kurtosis_excess_double"(double, double) noexcept nogil
cdef void *_export_nct_kurtosis_excess_double = <void*>_func_nct_kurtosis_excess_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_mean_float "nct_mean_float"(float, float) noexcept nogil
cdef void *_export_nct_mean_float = <void*>_func_nct_mean_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_mean_double "nct_mean_double"(double, double) noexcept nogil
cdef void *_export_nct_mean_double = <void*>_func_nct_mean_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_pdf_float "nct_pdf_float"(float, float, float) noexcept nogil
cdef void *_export_nct_pdf_float = <void*>_func_nct_pdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_pdf_double "nct_pdf_double"(double, double, double) noexcept nogil
cdef void *_export_nct_pdf_double = <void*>_func_nct_pdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_ppf_float "nct_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_nct_ppf_float = <void*>_func_nct_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_ppf_double "nct_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_nct_ppf_double = <void*>_func_nct_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_sf_float "nct_sf_float"(float, float, float) noexcept nogil
cdef void *_export_nct_sf_float = <void*>_func_nct_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_sf_double "nct_sf_double"(double, double, double) noexcept nogil
cdef void *_export_nct_sf_double = <void*>_func_nct_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_skewness_float "nct_skewness_float"(float, float) noexcept nogil
cdef void *_export_nct_skewness_float = <void*>_func_nct_skewness_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_skewness_double "nct_skewness_double"(double, double) noexcept nogil
cdef void *_export_nct_skewness_double = <void*>_func_nct_skewness_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_variance_float "nct_variance_float"(float, float) noexcept nogil
cdef void *_export_nct_variance_float = <void*>_func_nct_variance_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_variance_double "nct_variance_double"(double, double) noexcept nogil
cdef void *_export_nct_variance_double = <void*>_func_nct_variance_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncx2_cdf_float "ncx2_cdf_float"(float, float, float) noexcept nogil
cdef void *_export_ncx2_cdf_float = <void*>_func_ncx2_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncx2_cdf_double "ncx2_cdf_double"(double, double, double) noexcept nogil
cdef void *_export_ncx2_cdf_double = <void*>_func_ncx2_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncx2_isf_float "ncx2_isf_float"(float, float, float) noexcept nogil
cdef void *_export_ncx2_isf_float = <void*>_func_ncx2_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncx2_isf_double "ncx2_isf_double"(double, double, double) noexcept nogil
cdef void *_export_ncx2_isf_double = <void*>_func_ncx2_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncx2_pdf_float "ncx2_pdf_float"(float, float, float) noexcept nogil
cdef void *_export_ncx2_pdf_float = <void*>_func_ncx2_pdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncx2_pdf_double "ncx2_pdf_double"(double, double, double) noexcept nogil
cdef void *_export_ncx2_pdf_double = <void*>_func_ncx2_pdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncx2_ppf_float "ncx2_ppf_float"(float, float, float) noexcept nogil
cdef void *_export_ncx2_ppf_float = <void*>_func_ncx2_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncx2_ppf_double "ncx2_ppf_double"(double, double, double) noexcept nogil
cdef void *_export_ncx2_ppf_double = <void*>_func_ncx2_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncx2_sf_float "ncx2_sf_float"(float, float, float) noexcept nogil
cdef void *_export_ncx2_sf_float = <void*>_func_ncx2_sf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncx2_sf_double "ncx2_sf_double"(double, double, double) noexcept nogil
cdef void *_export_ncx2_sf_double = <void*>_func_ncx2_sf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_skewnorm_cdf_float "skewnorm_cdf_float"(float, float, float, float) noexcept nogil
cdef void *_export_skewnorm_cdf_float = <void*>_func_skewnorm_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_skewnorm_cdf_double "skewnorm_cdf_double"(double, double, double, double) noexcept nogil
cdef void *_export_skewnorm_cdf_double = <void*>_func_skewnorm_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_skewnorm_isf_float "skewnorm_isf_float"(float, float, float, float) noexcept nogil
cdef void *_export_skewnorm_isf_float = <void*>_func_skewnorm_isf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_skewnorm_isf_double "skewnorm_isf_double"(double, double, double, double) noexcept nogil
cdef void *_export_skewnorm_isf_double = <void*>_func_skewnorm_isf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_skewnorm_ppf_float "skewnorm_ppf_float"(float, float, float, float) noexcept nogil
cdef void *_export_skewnorm_ppf_float = <void*>_func_skewnorm_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_skewnorm_ppf_double "skewnorm_ppf_double"(double, double, double, double) noexcept nogil
cdef void *_export_skewnorm_ppf_double = <void*>_func_skewnorm_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func__stirling2_inexact "_stirling2_inexact"(double, double) noexcept nogil
cdef void *_export__stirling2_inexact = <void*>_func__stirling2_inexact
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ibeta_float "ibeta_float"(float, float, float) noexcept nogil
cdef void *_export_ibeta_float = <void*>_func_ibeta_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ibeta_double "ibeta_double"(double, double, double) noexcept nogil
cdef void *_export_ibeta_double = <void*>_func_ibeta_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ibetac_float "ibetac_float"(float, float, float) noexcept nogil
cdef void *_export_ibetac_float = <void*>_func_ibetac_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ibetac_double "ibetac_double"(double, double, double) noexcept nogil
cdef void *_export_ibetac_double = <void*>_func_ibetac_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ibetac_inv_float "ibetac_inv_float"(float, float, float) noexcept nogil
cdef void *_export_ibetac_inv_float = <void*>_func_ibetac_inv_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ibetac_inv_double "ibetac_inv_double"(double, double, double) noexcept nogil
cdef void *_export_ibetac_inv_double = <void*>_func_ibetac_inv_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ibeta_inv_float "ibeta_inv_float"(float, float, float) noexcept nogil
cdef void *_export_ibeta_inv_float = <void*>_func_ibeta_inv_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ibeta_inv_double "ibeta_inv_double"(double, double, double) noexcept nogil
cdef void *_export_ibeta_inv_double = <void*>_func_ibeta_inv_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_faddeeva_dawsn "faddeeva_dawsn"(double) noexcept nogil
cdef void *_export_faddeeva_dawsn = <void*>_func_faddeeva_dawsn
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_dawsn_complex "faddeeva_dawsn_complex"(double complex) noexcept nogil
cdef void *_export_faddeeva_dawsn_complex = <void*>_func_faddeeva_dawsn_complex
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_fellint_RC "fellint_RC"(double, double) noexcept nogil
cdef void *_export_fellint_RC = <void*>_func_fellint_RC
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_cellint_RC "cellint_RC"(double complex, double complex) noexcept nogil
cdef void *_export_cellint_RC = <void*>_func_cellint_RC
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_fellint_RD "fellint_RD"(double, double, double) noexcept nogil
cdef void *_export_fellint_RD = <void*>_func_fellint_RD
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_cellint_RD "cellint_RD"(double complex, double complex, double complex) noexcept nogil
cdef void *_export_cellint_RD = <void*>_func_cellint_RD
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_fellint_RF "fellint_RF"(double, double, double) noexcept nogil
cdef void *_export_fellint_RF = <void*>_func_fellint_RF
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_cellint_RF "cellint_RF"(double complex, double complex, double complex) noexcept nogil
cdef void *_export_cellint_RF = <void*>_func_cellint_RF
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_fellint_RG "fellint_RG"(double, double, double) noexcept nogil
cdef void *_export_fellint_RG = <void*>_func_fellint_RG
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_cellint_RG "cellint_RG"(double complex, double complex, double complex) noexcept nogil
cdef void *_export_cellint_RG = <void*>_func_cellint_RG
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_fellint_RJ "fellint_RJ"(double, double, double, double) noexcept nogil
cdef void *_export_fellint_RJ = <void*>_func_fellint_RJ
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_cellint_RJ "cellint_RJ"(double complex, double complex, double complex, double complex) noexcept nogil
cdef void *_export_cellint_RJ = <void*>_func_cellint_RJ
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_erf "faddeeva_erf"(double complex) noexcept nogil
cdef void *_export_faddeeva_erf = <void*>_func_faddeeva_erf
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_erfc_complex "faddeeva_erfc_complex"(double complex) noexcept nogil
cdef void *_export_faddeeva_erfc_complex = <void*>_func_faddeeva_erfc_complex
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_faddeeva_erfcx "faddeeva_erfcx"(double) noexcept nogil
cdef void *_export_faddeeva_erfcx = <void*>_func_faddeeva_erfcx
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_erfcx_complex "faddeeva_erfcx_complex"(double complex) noexcept nogil
cdef void *_export_faddeeva_erfcx_complex = <void*>_func_faddeeva_erfcx_complex
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_faddeeva_erfi "faddeeva_erfi"(double) noexcept nogil
cdef void *_export_faddeeva_erfi = <void*>_func_faddeeva_erfi
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_erfi_complex "faddeeva_erfi_complex"(double complex) noexcept nogil
cdef void *_export_faddeeva_erfi_complex = <void*>_func_faddeeva_erfi_complex
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_erfinv_float "erfinv_float"(float) noexcept nogil
cdef void *_export_erfinv_float = <void*>_func_erfinv_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_erfinv_double "erfinv_double"(double) noexcept nogil
cdef void *_export_erfinv_double = <void*>_func_erfinv_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_hyp1f1_double "hyp1f1_double"(double, double, double) noexcept nogil
cdef void *_export_hyp1f1_double = <void*>_func_hyp1f1_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_faddeeva_log_ndtr "faddeeva_log_ndtr"(double) noexcept nogil
cdef void *_export_faddeeva_log_ndtr = <void*>_func_faddeeva_log_ndtr
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_log_ndtr_complex "faddeeva_log_ndtr_complex"(double complex) noexcept nogil
cdef void *_export_faddeeva_log_ndtr_complex = <void*>_func_faddeeva_log_ndtr_complex
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_cdf_float "ncf_cdf_float"(float, float, float, float) noexcept nogil
cdef void *_export_ncf_cdf_float = <void*>_func_ncf_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_cdf_double "ncf_cdf_double"(double, double, double, double) noexcept nogil
cdef void *_export_ncf_cdf_double = <void*>_func_ncf_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_ncf_ppf_float "ncf_ppf_float"(float, float, float, float) noexcept nogil
cdef void *_export_ncf_ppf_float = <void*>_func_ncf_ppf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_ncf_ppf_double "ncf_ppf_double"(double, double, double, double) noexcept nogil
cdef void *_export_ncf_ppf_double = <void*>_func_ncf_ppf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_nct_cdf_float "nct_cdf_float"(float, float, float) noexcept nogil
cdef void *_export_nct_cdf_float = <void*>_func_nct_cdf_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_nct_cdf_double "nct_cdf_double"(double, double, double) noexcept nogil
cdef void *_export_nct_cdf_double = <void*>_func_nct_cdf_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_ndtr "faddeeva_ndtr"(double complex) noexcept nogil
cdef void *_export_faddeeva_ndtr = <void*>_func_faddeeva_ndtr
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef float _func_powm1_float "powm1_float"(float, float) noexcept nogil
cdef void *_export_powm1_float = <void*>_func_powm1_float
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_powm1_double "powm1_double"(double, double) noexcept nogil
cdef void *_export_powm1_double = <void*>_func_powm1_double
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_faddeeva_voigt_profile "faddeeva_voigt_profile"(double, double, double) noexcept nogil
cdef void *_export_faddeeva_voigt_profile = <void*>_func_faddeeva_voigt_profile
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_faddeeva_w "faddeeva_w"(double complex) noexcept nogil
cdef void *_export_faddeeva_w = <void*>_func_faddeeva_w
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double complex _func_wrightomega "wrightomega"(double complex) noexcept nogil
cdef void *_export_wrightomega = <void*>_func_wrightomega
cdef extern from r"_ufuncs_cxx_defs.h":
    cdef double _func_wrightomega_real "wrightomega_real"(double) noexcept nogil
cdef void *_export_wrightomega_real = <void*>_func_wrightomega_real