Uses of Class
com.irurueta.statistics.Randomizer

  • Uses of Randomizer in com.irurueta.statistics

    Modifier and Type
    Class
    Description
    class 
    Generates pseudo-random values following a Gaussian distribution having the specified mMean and standard deviation.
    class 
    Generates pseudo-random values following a uniform distribution.
    Methods in com.irurueta.statistics that return Randomizer
    Modifier and Type
    Method
    Description
    static Randomizer
    Randomizer.create()
    Creates a new Randomizer instance using DEFAULT_RANDOMIZER_TYPE and USE_SECURE_RANDOM_By_DEFAULT to determine what type of random distribution is to be used and whether the random generator must be secure or not.
    static Randomizer
    Randomizer.create(boolean useSecureRandom)
    Creates a new Randomizer instance using DEFAULT_RANDOMIZER_TYPE.
    static Randomizer
    Randomizer.create(RandomizerType type)
    Creates a new Randomizer instance using provided randomizer type and the default secure mode specified by USE_SECURE_RANDOM_BY_DEFAULT.
    static Randomizer
    Randomizer.create(RandomizerType type, boolean useSecureRandom)
    Creates a new Randomizer instance using provided randomizer type and provided secure mode.
    static Randomizer
    Randomizer.create(RandomizerType type, Random internalRandom)
    Creates a new Randomizer instance using provided randomizer type and internal randomizer.
    static Randomizer
    Randomizer.create(Random internalRandomizer)
    Creates a new Randomizer instance using provided internal randomizer instance.