Uses of Class
org.flag4j.rng.distributions.Distribution
Packages that use Distribution
Package
Description
Pseudo-random generation of real/complex numbers, and arrays, vectors, matrices, and tensors.
Statistical distributions useful for repeated random sampling.
-
Uses of Distribution in org.flag4j.rng
Methods in org.flag4j.rng with parameters of type DistributionModifier and TypeMethodDescriptionstatic void
RandomArray.randomFill
(double[] arr, Distribution<Double, Random> distribution) Fills an array with pseudorandom values sampled from the specifieddistribution
.static void
RandomArray.randomFill
(int[] arr, Distribution<Integer, Random> distribution) Fills an array with pseudorandom values sampled from the specifieddistribution
.static void
RandomArray.randomFill
(Complex128[] arr, Distribution<Complex128, RandomComplex> distribution) Fills an array with pseudorandom values sampled from the specifieddistribution
.static void
RandomArray.randomFill
(Complex64[] arr, Distribution<Complex64, RandomComplex> distribution) Fills an array with pseudorandom values sampled from the specifieddistribution
. -
Uses of Distribution in org.flag4j.rng.distributions
Subclasses of Distribution in org.flag4j.rng.distributionsModifier and TypeClassDescriptionclass
A 2D bivariate Gaussian distribution on the complex plane.class
A uniform distribution over an annulus (i.e. washer) on the complex plane.class
A rectangular uniform distribution on the complex plane.class
A 1D real Gaussian (normal) distribution \(\mathcal{N}\left(\mu, \sigma^2\right)\).class
A 1D real uniform distribution \(\mathcal{U}(a, b)\).