public class LinearInterpolatedTimeDiscreteProcess extends Object implements Process
Process
and creates a stochastic process \( t \mapsto X(t) \)
where
\[
X(t) = \frac{t_{i+1} - t}{t_{i+1}-t_{i}} X(t_{i}) + \frac{t - t_{i}}{t_{i+1}-t_{i}} X(t_{i+1})
\]
with \( t_{i} \leq t \leq t_{i+1} \).
Note: this is the interpolation scheme used in the convergence of the Euler-Maruyama scheme.Constructor and Description |
---|
LinearInterpolatedTimeDiscreteProcess(Map<Double,RandomVariable> realizations)
Create a time discrete process by linear interpolation of random variables.
|
Modifier and Type | Method and Description |
---|---|
LinearInterpolatedTimeDiscreteProcess |
add(LinearInterpolatedTimeDiscreteProcess process)
Create a new linear interpolated time discrete process by
using the time discretization of this process and the sum of this process and the given one
as its values.
|
LinearInterpolatedTimeDiscreteProcess |
apply(DoubleUnaryOperator function)
Create a new process consisting of the interpolation of the random variables obtained by
applying the given function to this process discrete set of random variables.
|
Process |
clone()
Create and return a clone of this process.
|
RandomVariable |
getMonteCarloWeights(int timeIndex)
This method returns the weights of a weighted Monte Carlo method (the probability density).
|
int |
getNumberOfComponents() |
RandomVariable |
getProcessValue(double time,
int component)
Returns the (possibly interpolated) value of this stochastic process at a given time \( t \).
|
RandomVariable |
getProcessValue(int timeIndex,
int component)
This method returns the realization of a component of the process for a given time index.
|
double |
getTime(int timeIndex) |
TimeDiscretization |
getTimeDiscretization() |
int |
getTimeIndex(double time)
Returns the time index for a given simulation time.
|
public LinearInterpolatedTimeDiscreteProcess(Map<Double,RandomVariable> realizations)
realizations
- Given map from time to random variable. The map must not be modified.public LinearInterpolatedTimeDiscreteProcess add(LinearInterpolatedTimeDiscreteProcess process) throws CalculationException
process
- A given process.CalculationException
- Thrown if the given process fails to evaluate at a certain time point.public LinearInterpolatedTimeDiscreteProcess apply(DoubleUnaryOperator function)
function
- The function \( f \), a univariate function.public RandomVariable getProcessValue(double time, int component)
time
- The time \( t \).component
- The component to be returned (if this is a vector valued process), otherwise 0.public RandomVariable getProcessValue(int timeIndex, int component)
Process
getProcessValue
in interface Process
timeIndex
- Time index at which the process should be observedcomponent
- Component index of the processRandomVariableFromDoubleArray
)public RandomVariable getMonteCarloWeights(int timeIndex)
Process
getMonteCarloWeights
in interface Process
timeIndex
- Time index at which the process should be observedpublic int getNumberOfComponents()
getNumberOfComponents
in interface Process
public TimeDiscretization getTimeDiscretization()
getTimeDiscretization
in interface Process
public double getTime(int timeIndex)
public int getTimeIndex(double time)
Process
getTimeIndex
in interface Process
time
- The given simulation time.Copyright © 2020. All rights reserved.