Uses of Class
org.apache.commons.rng.sampling.distribution.StableSampler
Packages that use StableSampler
Package
Description
This package contains classes for sampling from statistical distributions.
-
Uses of StableSampler in org.apache.commons.rng.sampling.distribution
Subclasses of StableSampler in org.apache.commons.rng.sampling.distributionModifier and TypeClassDescription(package private) static classImplement the stable distribution case:alpha == 1andbeta != 0.private static classBase class for implementations of a stable distribution that requires an exponential random deviate.(package private) static classImplement the generic stable distribution case:alpha < 2andbeta == 0.(package private) static classImplement the generic stable distribution case:alpha < 2andbeta == 0.private static final classImplement thealpha = 1andbeta = 0stable distribution case (Cauchy distribution).(package private) static classImplement the generic stable distribution case:alpha < 2andbeta != 0.private static final classImplement thealpha = 2stable distribution case (Gaussian distribution).private static final classImplement thealpha = 0.5andbeta = 1stable distribution case (Levy distribution).private static final classClass for implementations of a stable distribution transformed by scale and location.(package private) static classImplement the generic stable distribution case:alpha < 2andbeta != 0.Fields in org.apache.commons.rng.sampling.distribution declared as StableSamplerModifier and TypeFieldDescriptionprivate final StableSamplerStableSampler.TransformedStableSampler.samplerUnderlying normalized stable sampler.Methods in org.apache.commons.rng.sampling.distribution that return StableSamplerModifier and TypeMethodDescriptionprivate static StableSamplerStableSampler.create(UniformRandomProvider rng, double alpha, double beta) Creates a standardized sampler of a stable distribution with zero location and unit scale.static StableSamplerStableSampler.of(UniformRandomProvider rng, double alpha, double beta) Creates a standardized sampler of a stable distribution with zero location and unit scale.static StableSamplerStableSampler.of(UniformRandomProvider rng, double alpha, double beta, double gamma, double delta) Creates a sampler of a stable distribution.StableSampler.TransformedStableSampler.withUniformRandomProvider(UniformRandomProvider rng) abstract StableSamplerStableSampler.withUniformRandomProvider(UniformRandomProvider rng) Create a new instance of the sampler with the same underlying state using the given uniform random provider as the source of randomness.Constructors in org.apache.commons.rng.sampling.distribution with parameters of type StableSamplerModifierConstructorDescription(package private)TransformedStableSampler(StableSampler sampler, double gamma, double delta)