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
| from numpy._pytesttester import PytestTester
|
| from numpy.random._generator import Generator as Generator
| from numpy.random._generator import default_rng as default_rng
| from numpy.random._mt19937 import MT19937 as MT19937
| from numpy.random._pcg64 import (
| PCG64 as PCG64,
| PCG64DXSM as PCG64DXSM,
| )
| from numpy.random._philox import Philox as Philox
| from numpy.random._sfc64 import SFC64 as SFC64
| from numpy.random.bit_generator import BitGenerator as BitGenerator
| from numpy.random.bit_generator import SeedSequence as SeedSequence
| from numpy.random.mtrand import (
| RandomState as RandomState,
| beta as beta,
| binomial as binomial,
| bytes as bytes,
| chisquare as chisquare,
| choice as choice,
| dirichlet as dirichlet,
| exponential as exponential,
| f as f,
| gamma as gamma,
| geometric as geometric,
| get_bit_generator as get_bit_generator,
| get_state as get_state,
| gumbel as gumbel,
| hypergeometric as hypergeometric,
| laplace as laplace,
| logistic as logistic,
| lognormal as lognormal,
| logseries as logseries,
| multinomial as multinomial,
| multivariate_normal as multivariate_normal,
| negative_binomial as negative_binomial,
| noncentral_chisquare as noncentral_chisquare,
| noncentral_f as noncentral_f,
| normal as normal,
| pareto as pareto,
| permutation as permutation,
| poisson as poisson,
| power as power,
| rand as rand,
| randint as randint,
| randn as randn,
| random as random,
| random_integers as random_integers,
| random_sample as random_sample,
| ranf as ranf,
| rayleigh as rayleigh,
| sample as sample,
| seed as seed,
| set_bit_generator as set_bit_generator,
| set_state as set_state,
| shuffle as shuffle,
| standard_cauchy as standard_cauchy,
| standard_exponential as standard_exponential,
| standard_gamma as standard_gamma,
| standard_normal as standard_normal,
| standard_t as standard_t,
| triangular as triangular,
| uniform as uniform,
| vonmises as vonmises,
| wald as wald,
| weibull as weibull,
| zipf as zipf,
| )
|
| __all__: list[str]
| __path__: list[str]
| test: PytestTester
|
|