public class BrownianMotionView extends Object implements BrownianMotionInterface
BrownianMotionInterface
.Constructor and Description |
---|
BrownianMotionView(BrownianMotionInterface brownianMotion,
Integer[] factors)
Create a sub-view on a Brownian motion.
|
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.
|
public BrownianMotionView(BrownianMotionInterface brownianMotion, Integer[] factors)
BrownianMotionInterface
, i.e. a Brownian motion,
which maps factor indices to possilby other factors of the given Brownian motion.
You may use this class to change the number of factors and/or the order.brownianMotion
- A given Brownian motion.factors
- A map of indices i → j for i = 0,1,2,3,... given as an array of j'spublic RandomVariableInterface getBrownianIncrement(int timeIndex, int factor)
BrownianMotionInterface
getBrownianIncrement
in interface BrownianMotionInterface
timeIndex
- The time index (corresponding to the this class's time discretization).factor
- The index of the factor (independent scalar Brownian increment).public TimeDiscretizationInterface getTimeDiscretization()
BrownianMotionInterface
getTimeDiscretization
in interface BrownianMotionInterface
public int getNumberOfFactors()
BrownianMotionInterface
getNumberOfFactors
in interface BrownianMotionInterface
public int getNumberOfPaths()
BrownianMotionInterface
getNumberOfPaths
in interface BrownianMotionInterface
public RandomVariableInterface getRandomVariableForConstant(double value)
BrownianMotionInterface
getRandomVariableForConstant
in interface BrownianMotionInterface
value
- The constant value to be used for initialized the random variable.public BrownianMotionInterface getCloneWithModifiedSeed(int seed)
BrownianMotionInterface
getCloneWithModifiedSeed
in interface BrownianMotionInterface
seed
- New value for the seed.public BrownianMotionInterface getCloneWithModifiedTimeDiscretization(TimeDiscretizationInterface newTimeDiscretization)
BrownianMotionInterface
getCloneWithModifiedTimeDiscretization
in interface BrownianMotionInterface
newTimeDiscretization
- New time discretizationCopyright © 2016. All rights reserved.