public class BrownianBridge extends Object implements BrownianMotionInterface
A Brownian bridge is a conditional Brownian motion, i.e. for given random variables
X and Y the Brownian bridge is
(W(t) | W(s) = X , W(T) = Y),
where W is a Brownian motion and s ≤ t ≤ T.
The samples of the Brownian bridge are generated by a Brownian motion which will be used to fill the gap between start and end. It is important that this Browninan motion is independent from the one which generated start and end, i.e. here: it should have a different seed.
The class implements the BrownianMotionInterface, i.e., it only provides the increments
of the Brownian bridge (however, in most application, like refinement of an Euler-scheme, this is
exactly the desired object).
Note: The number of paths needs to be specified, because the start and the end point may be not stochastic, i.e. it is not possible to infer this quantity from the specified start and end.
| Constructor and Description |
|---|
BrownianBridge(TimeDiscretizationInterface timeDiscretization,
int numberOfPaths,
int seed,
RandomVariableInterface[] start,
RandomVariableInterface[] end)
Construct a Brownian bridge, bridging from a given start to a given end.
|
BrownianBridge(TimeDiscretizationInterface timeDiscretization,
int numberOfPaths,
int seed,
RandomVariableInterface start,
RandomVariableInterface end)
Construct a Brownian bridge, bridging from a given start to a given end.
|
| Modifier and Type | Method and Description |
|---|---|
RandomVariableInterface |
getBrownianIncrement(int timeIndex,
int factor)
Return the Brownian increment for a given timeIndex.
|
BrownianMotionInterface |
getCloneWithModifiedSeed(int seed)
Return a new object implementing BrownianMotionInterface
having the same specifications as this object but a different seed
for the random number generator.
|
BrownianMotionInterface |
getCloneWithModifiedTimeDiscretization(TimeDiscretizationInterface newTimeDiscretization)
Return a new object implementing BrownianMotionInterface
having the same specifications as this object but a different
time discretization.
|
int |
getNumberOfFactors()
Returns the number of factors.
|
int |
getNumberOfPaths()
Returns the number of paths.
|
RandomVariableInterface |
getRandomVariableForConstant(double value)
Returns a random variable which is initialized to a constant,
but has exactly the same number of paths or discretization points as the ones used by this BrownianMotionInterface.
|
TimeDiscretizationInterface |
getTimeDiscretization()
Returns the time discretization used for this set of time-discrete Brownian increments.
|
String |
toString() |
public BrownianBridge(TimeDiscretizationInterface timeDiscretization, int numberOfPaths, int seed, RandomVariableInterface[] start, RandomVariableInterface[] end)
timeDiscretization - The time discretization used for the Brownian increments.numberOfPaths - Number of paths to simulate.seed - The seed of the random number generator.start - Start value of the Brownian bridge.end - End value of the Brownian bridge.public BrownianBridge(TimeDiscretizationInterface timeDiscretization, int numberOfPaths, int seed, RandomVariableInterface start, RandomVariableInterface end)
timeDiscretization - The time discretization used for the Brownian increments.numberOfPaths - Number of paths to simulate.seed - The seed of the random number generator.start - Start value of the Brownian bridge.end - End value of the Brownian bridge.public RandomVariableInterface getBrownianIncrement(int timeIndex, int factor)
BrownianMotionInterfacegetBrownianIncrement in interface BrownianMotionInterfacetimeIndex - The time index (corresponding to the this class's time discretization).factor - The index of the factor (independent scalar Brownian increment).public TimeDiscretizationInterface getTimeDiscretization()
BrownianMotionInterfacegetTimeDiscretization in interface BrownianMotionInterfacepublic int getNumberOfFactors()
BrownianMotionInterfacegetNumberOfFactors in interface BrownianMotionInterfacepublic int getNumberOfPaths()
BrownianMotionInterfacegetNumberOfPaths in interface BrownianMotionInterfacepublic RandomVariableInterface getRandomVariableForConstant(double value)
BrownianMotionInterfacegetRandomVariableForConstant in interface BrownianMotionInterfacevalue - The constant value to be used for initialized the random variable.public BrownianMotionInterface getCloneWithModifiedSeed(int seed)
BrownianMotionInterfacegetCloneWithModifiedSeed in interface BrownianMotionInterfaceseed - New value for the seed.public BrownianMotionInterface getCloneWithModifiedTimeDiscretization(TimeDiscretizationInterface newTimeDiscretization)
BrownianMotionInterfacegetCloneWithModifiedTimeDiscretization in interface BrownianMotionInterfacenewTimeDiscretization - New time discretizationCopyright © 2015. All rights reserved.