About 1,630 results
Open links in new tab
  1. numpy.random.uniform — NumPy v2.2 Manual

    Discrete uniform distribution, yielding integers. random_integers. Discrete uniform distribution over the closed interval [low, high]. random_sample. Floats uniformly distributed over [0, 1). …

  2. numpy.random.normal — NumPy v2.2 Manual

    Draw random samples from a normal (Gaussian) distribution. The probability density function of the normal distribution, first derived by De Moivre and 200 years later by both Gauss and …

  3. Random sampling (numpy.random) — NumPy v1.16 Manual

    Feb 18, 2020 · Return a sample (or samples) from the “standard normal” distribution. randint (low[, high, size, dtype]) Return random integers from low (inclusive) to high (exclusive).

  4. numpy.random.poisson — NumPy v1.19 Manual

    numpy.random.poisson (lam=1.0, size=None) ¶ Draw samples from a Poisson distribution. The Poisson distribution is the limit of the binomial distribution for large N.

  5. numpy.random.randint — NumPy v2.2 Manual

    Return random integers from the “discrete uniform” distribution of the specified dtype in the “half-open” interval [low, high). If high is None (the default), then results are from [0, low ).

  6. numpy.random.Generator.uniform — NumPy v2.2 Manual

    numpy.random.Generator.uniform# method. random.Generator. uniform (low = 0.0, high = 1.0, size = None) # Draw samples from a uniform distribution. Samples are uniformly distributed …

  7. numpy.isin — NumPy v2.2 Manual

    numpy. isin (element, test_elements, assume_unique = False, invert = False, *, kind = None) [source] # Calculates element in test_elements , broadcasting over element only. Returns a …

  8. C API for random — NumPy v1.24 Manual

    Generate random uint64 numbers in closed interval [off, off + rng]. npy_uint64 random_bounded_uint64 ( bitgen_t * bitgen_state , npy_uint64 off , npy_uint64 rng , …

  9. Random Generator — NumPy v1.18 Manual

    May 24, 2020 · class numpy.random.Generator (bit_generator) ¶ Container for the BitGenerators. Generator exposes a number of methods for generating random numbers drawn from a variety …

  10. Random Generator — NumPy v1.17 Manual

    class numpy.random.Generator (bit_generator) ¶ Container for the BitGenerators. Generator exposes a number of methods for generating random numbers drawn from a variety of …

Refresh