Uses of Interface
org.hipparchus.random.RandomVectorGenerator
-
Packages that use RandomVectorGenerator Package Description org.hipparchus.optim Generally, optimizers are algorithms that will eitherminimize
ormaximize
a scalar function, called theobjective function
.org.hipparchus.optim.nonlinear.scalar Algorithms for optimizing a scalar function.org.hipparchus.random Random number and random data generators.org.hipparchus.samples Various examples. -
-
Uses of RandomVectorGenerator in org.hipparchus.optim
Constructors in org.hipparchus.optim with parameters of type RandomVectorGenerator Constructor Description BaseMultiStartMultivariateOptimizer(BaseMultivariateOptimizer<P> optimizer, int starts, RandomVectorGenerator generator)
Create a multi-start optimizer from a single-start optimizer. -
Uses of RandomVectorGenerator in org.hipparchus.optim.nonlinear.scalar
Constructors in org.hipparchus.optim.nonlinear.scalar with parameters of type RandomVectorGenerator Constructor Description MultiStartMultivariateOptimizer(MultivariateOptimizer optimizer, int starts, RandomVectorGenerator generator)
Create a multi-start optimizer from a single-start optimizer. -
Uses of RandomVectorGenerator in org.hipparchus.random
Classes in org.hipparchus.random that implement RandomVectorGenerator Modifier and Type Class Description class
CorrelatedRandomVectorGenerator
ARandomVectorGenerator
that generates vectors with with correlated components.class
HaltonSequenceGenerator
Implementation of a Halton sequence.class
SobolSequenceGenerator
Implementation of a Sobol sequence.class
UncorrelatedRandomVectorGenerator
ARandomVectorGenerator
that generates vectors with uncorrelated components.class
UnitSphereRandomVectorGenerator
Generate random vectors isotropically located on the surface of a sphere. -
Uses of RandomVectorGenerator in org.hipparchus.samples
Methods in org.hipparchus.samples with parameters of type RandomVectorGenerator Modifier and Type Method Description static List<Vector2D>
LowDiscrepancyGeneratorComparison. makeCircle(int samples, RandomVectorGenerator generator)
static List<Vector2D>
LowDiscrepancyGeneratorComparison. makeRandom(int samples, RandomVectorGenerator generator)
-