Uses of Class
org.flag4j.rng.distributions.Distribution
Packages that use Distribution
Package
Description
This package contains classes for Pseudo-random generation of real/complex numbers, and arrays, vectors,
matrices, and tensors.
Distributions useful for repeated random sampling from the same distribution.
-
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 bivariateGaussian distribution on the complex plane.class
A uniform distribution on an annulus (e.g. washer) in the complex plane.class
A rectangular uniform distribution on the complex plane.class
A real Gaussian (e.g. normal) distribution.class
A uniform real distribution.