Uses of Class
org.apache.commons.rng.sampling.UnitSphereSampler
-
Packages that use UnitSphereSampler Package Description org.apache.commons.rng.sampling This package provides sampling utilities. -
-
Uses of UnitSphereSampler in org.apache.commons.rng.sampling
Subclasses of UnitSphereSampler in org.apache.commons.rng.sampling Modifier and Type Class Description private static classUnitSphereSampler.UnitSphereSampler1DSample uniformly from the ends of a 1D unit line.private static classUnitSphereSampler.UnitSphereSampler2DSample uniformly from a 2D unit circle.private static classUnitSphereSampler.UnitSphereSampler3DSample uniformly from a 3D unit sphere.private static classUnitSphereSampler.UnitSphereSamplerNDSample uniformly from a ND unit sphere.Fields in org.apache.commons.rng.sampling declared as UnitSphereSampler Modifier and Type Field Description private UnitSphereSamplerUnitSphereSampler. delegateThe internal sampler optimised for the dimension.Methods in org.apache.commons.rng.sampling that return UnitSphereSampler Modifier and Type Method Description static UnitSphereSamplerUnitSphereSampler. of(UniformRandomProvider rng, int dimension)Create a unit sphere sampler for the given dimension.UnitSphereSamplerUnitSphereSampler.UnitSphereSampler1D. withUniformRandomProvider(UniformRandomProvider rng)UnitSphereSamplerUnitSphereSampler.UnitSphereSampler2D. withUniformRandomProvider(UniformRandomProvider rng)UnitSphereSamplerUnitSphereSampler.UnitSphereSampler3D. withUniformRandomProvider(UniformRandomProvider rng)UnitSphereSamplerUnitSphereSampler.UnitSphereSamplerND. withUniformRandomProvider(UniformRandomProvider rng)UnitSphereSamplerUnitSphereSampler. 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 with parameters of type UnitSphereSampler Constructor Description UnitSphereSampler(UnitSphereSampler delegate)Private constructor used by deprecated constructor used to prevent partially initialized object if the construction of the delegate throws.
-