Uses of Interface
org.apache.commons.rng.sampling.distribution.NormalizedGaussianSampler
-
Packages that use NormalizedGaussianSampler Package Description org.apache.commons.rng.sampling This package provides sampling utilities.org.apache.commons.rng.sampling.distribution This package contains classes for sampling from statistical distributions.org.apache.commons.rng.sampling.shape This package contains classes for sampling coordinates from shapes, for example a unit ball. -
-
Uses of NormalizedGaussianSampler in org.apache.commons.rng.sampling
Fields in org.apache.commons.rng.sampling declared as NormalizedGaussianSampler Modifier and Type Field Description private NormalizedGaussianSamplerUnitSphereSampler.UnitSphereSampler2D. samplerSampler used for generating the individual components of the vectors.private NormalizedGaussianSamplerUnitSphereSampler.UnitSphereSampler3D. samplerSampler used for generating the individual components of the vectors.private NormalizedGaussianSamplerUnitSphereSampler.UnitSphereSamplerND. samplerSampler used for generating the individual components of the vectors. -
Uses of NormalizedGaussianSampler in org.apache.commons.rng.sampling.distribution
Classes in org.apache.commons.rng.sampling.distribution that implement NormalizedGaussianSampler Modifier and Type Class Description classBoxMullerNormalizedGaussianSamplerBox-Muller algorithm for sampling from Gaussian distribution with mean 0 and standard deviation 1.classMarsagliaNormalizedGaussianSamplerMarsaglia polar method for sampling from a Gaussian distribution with mean 0 and standard deviation 1.classZigguratNormalizedGaussianSamplerMarsaglia and Tsang "Ziggurat" method for sampling from a Gaussian distribution with mean 0 and standard deviation 1.static classZigguratSampler.NormalizedGaussianModified ziggurat method for sampling from a Gaussian distribution with mean 0 and standard deviation 1.Fields in org.apache.commons.rng.sampling.distribution declared as NormalizedGaussianSampler Modifier and Type Field Description private NormalizedGaussianSamplerAhrensDieterMarsagliaTsangGammaSampler.MarsagliaTsangGammaSampler. gaussianGaussian sampling.private NormalizedGaussianSamplerLevySampler. gaussianGaussian sampler.private NormalizedGaussianSamplerLogNormalSampler. gaussianGaussian sampling.private NormalizedGaussianSamplerGaussianSampler. normalizedNormalized Gaussian sampler.private NormalizedGaussianSamplerStableSampler.GaussianStableSampler. samplerUnderlying normalized Gaussian sampler.private NormalizedGaussianSamplerStableSampler.LevyStableSampler. samplerUnderlying normalized Gaussian sampler.private NormalizedGaussianSamplerTSampler.NormalTSampler. samplerUnderlying normalized Gaussian sampler.Methods in org.apache.commons.rng.sampling.distribution with type parameters of type NormalizedGaussianSampler Modifier and Type Method Description static <S extends NormalizedGaussianSampler & SharedStateContinuousSampler>
SBoxMullerNormalizedGaussianSampler. of(UniformRandomProvider rng)Create a new normalised Gaussian sampler.static <S extends NormalizedGaussianSampler & SharedStateContinuousSampler>
SMarsagliaNormalizedGaussianSampler. of(UniformRandomProvider rng)Create a new normalised Gaussian sampler.static <S extends NormalizedGaussianSampler & SharedStateContinuousSampler>
SZigguratNormalizedGaussianSampler. of(UniformRandomProvider rng)Create a new normalised Gaussian sampler.Methods in org.apache.commons.rng.sampling.distribution that return NormalizedGaussianSampler Modifier and Type Method Description (package private) static NormalizedGaussianSamplerInternalUtils. newNormalizedGaussianSampler(NormalizedGaussianSampler sampler, UniformRandomProvider rng)Create a new instance of the given sampler usingSharedStateSampler.withUniformRandomProvider(UniformRandomProvider).Methods in org.apache.commons.rng.sampling.distribution with parameters of type NormalizedGaussianSampler Modifier and Type Method Description (package private) static NormalizedGaussianSamplerInternalUtils. newNormalizedGaussianSampler(NormalizedGaussianSampler sampler, UniformRandomProvider rng)Create a new instance of the given sampler usingSharedStateSampler.withUniformRandomProvider(UniformRandomProvider).static SharedStateContinuousSamplerGaussianSampler. of(NormalizedGaussianSampler normalized, double mean, double standardDeviation)Create a new normalised Gaussian sampler.static SharedStateContinuousSamplerLogNormalSampler. of(NormalizedGaussianSampler gaussian, double mu, double sigma)Create a new log-normal distribution sampler.Constructors in org.apache.commons.rng.sampling.distribution with parameters of type NormalizedGaussianSampler Constructor Description GaussianSampler(double mean, double standardDeviation, NormalizedGaussianSampler normalized)GaussianSampler(NormalizedGaussianSampler normalized, double mean, double standardDeviation)Create an instance.LogNormalSampler(double mu, double sigma, NormalizedGaussianSampler gaussian)LogNormalSampler(NormalizedGaussianSampler gaussian, double mu, double sigma)Create an instance. -
Uses of NormalizedGaussianSampler in org.apache.commons.rng.sampling.shape
Fields in org.apache.commons.rng.sampling.shape declared as NormalizedGaussianSampler Modifier and Type Field Description private NormalizedGaussianSamplerUnitBallSampler.UnitBallSampler3D. normalThe standard normal distribution.private NormalizedGaussianSamplerUnitBallSampler.UnitBallSamplerND. normalThe standard normal distribution.
-