Uses of Class
org.apache.commons.rng.sampling.distribution.StableSampler
-
Packages that use StableSampler Package Description org.apache.commons.rng.sampling.distribution 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.distribution Modifier and Type Class Description (package private) static classStableSampler.Alpha1CMSStableSamplerImplement the stable distribution case:alpha == 1andbeta != 0.private static classStableSampler.BaseStableSamplerBase class for implementations of a stable distribution that requires an exponential random deviate.(package private) static classStableSampler.Beta0CMSStableSamplerImplement the generic stable distribution case:alpha < 2andbeta == 0.(package private) static classStableSampler.Beta0WeronStableSamplerImplement the generic stable distribution case:alpha < 2andbeta == 0.private static classStableSampler.CauchyStableSamplerImplement thealpha = 1andbeta = 0stable distribution case (Cauchy distribution).(package private) static classStableSampler.CMSStableSamplerImplement the generic stable distribution case:alpha < 2andbeta != 0.private static classStableSampler.GaussianStableSamplerImplement thealpha = 2stable distribution case (Gaussian distribution).private static classStableSampler.LevyStableSamplerImplement thealpha = 0.5andbeta = 1stable distribution case (Levy distribution).private static classStableSampler.TransformedStableSamplerClass for implementations of a stable distribution transformed by scale and location.(package private) static classStableSampler.WeronStableSamplerImplement the generic stable distribution case:alpha < 2andbeta != 0.Fields in org.apache.commons.rng.sampling.distribution declared as StableSampler Modifier and Type Field Description private StableSamplerStableSampler.TransformedStableSampler. samplerUnderlying normalized stable sampler.Methods in org.apache.commons.rng.sampling.distribution that return StableSampler Modifier and Type Method Description private 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.StableSamplerStableSampler.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 StableSampler Constructor Description TransformedStableSampler(StableSampler sampler, double gamma, double delta)
-