diff options
Diffstat (limited to 'numpy/random/info.py')
-rw-r--r-- | numpy/random/info.py | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/numpy/random/info.py b/numpy/random/info.py new file mode 100644 index 000000000..44864495e --- /dev/null +++ b/numpy/random/info.py @@ -0,0 +1,56 @@ +"""\ +Core Random Tools +================= + +""" + +depends = ['base'] +global_symbols = ['rand','randn'] + +__all__ = [ + 'beta', + 'binomial', + 'bytes', + 'chisquare', + 'exponential', + 'f', + 'gamma', + 'geometric', + 'get_state', + 'gumbel', + 'hypergeometric', + 'laplace', + 'logistic', + 'lognormal', + 'logseries', + 'multinomial', + 'multivariate_normal', + 'negative_binomial', + 'noncentral_chisquare', + 'noncentral_f', + 'normal', + 'pareto', + 'permutation', + 'poisson', + 'power', + 'rand', + 'randint', + 'randn', + 'random_integers', + 'random_sample', + 'rayleigh', + 'seed', + 'set_state', + 'shuffle', + 'standard_cauchy', + 'standard_exponential', + 'standard_gamma', + 'standard_normal', + 'standard_t', + 'triangular', + 'uniform', + 'vonmises', + 'wald', + 'weibull', + 'zipf' +] |