Uses of Interface
net.finmath.randomnumbers.RandomNumberGenerator
Packages that use RandomNumberGenerator
Package
Description
Provides basic interfaces and classes used in Monte-Carlo models (like LIBOR market model or Monte-Carlo simulation
of a Black-Scholes model), e.g., the Monte-Carlo random variable and the Brownian motion.
Random number generators for samples of uniform distributed random variables and generators and transformation for other distriburtions.
-
Uses of RandomNumberGenerator in net.finmath.montecarlo
Constructors in net.finmath.montecarlo with parameters of type RandomNumberGeneratorModifierConstructorDescriptionBrownianMotionFromRandomNumberGenerator(TimeDiscretization timeDiscretization, int numberOfFactors, int numberOfPaths, RandomNumberGenerator randomNumberGenerator)Construct a Brownian motion.BrownianMotionFromRandomNumberGenerator(TimeDiscretization timeDiscretization, int numberOfFactors, int numberOfPaths, RandomNumberGenerator randomNumberGenerator, RandomVariableFactory randomVariableFactory)Construct a Brownian motion. -
Uses of RandomNumberGenerator in net.finmath.randomnumbers
Subinterfaces of RandomNumberGenerator in net.finmath.randomnumbersModifier and TypeInterfaceDescriptioninterfaceInterface for a 1-dimensional random number generator generating a sequence of vectors sampling the space [0,1]Classes in net.finmath.randomnumbers that implement RandomNumberGeneratorModifier and TypeClassDescriptionclassClass implementingRandomNumberGenerator1Dby the acceptance rejection method.classImplements a multi-dimensional Halton sequence (quasi random numbers) with the given bases.classWrapper class for java.security.SecureRandom.classMersenne Twister random number generator.classImplements a multi-dimensional Sobol sequence.classImplements a multi-dimensional Sobol sequence.classA van-der-Corput sequence \( \{ x_{i} \vert i = 0, 1, \ldots \} \) implementingRandomNumberGenerator1D.Constructors in net.finmath.randomnumbers with parameters of type RandomNumberGeneratorModifierConstructorDescriptionAcceptanceRejectionRandomNumberGenerator(RandomNumberGenerator uniformRandomNumberGenerator, DoubleUnaryOperator targetDensity, DoubleUnaryOperator referenceDensity, DoubleUnaryOperator referenceDistributionICDF, double acceptanceLevel)Create a random number sequence using the given input sequence and acceptance-rejection sampling.