SuanShu, a Java numerical and statistical library

com.numericalmethod.suanshu.stats.stochasticprocess.univariate.integration.sde
Interface Construction

All Known Implementing Classes:
Euler, Milstein, RandomWalk, RandomWalk

public interface Construction

This interface defines how a realization of a stochastic process is constructed.


Method Summary
 Realization realization(double x0)
          Construct a realization of the stochastic process.
 void seed(long seed)
          Seed the construction process so that we may generate the same realizations.
 

Method Detail

realization

Realization realization(double x0)
Construct a realization of the stochastic process. The realization is a time series.

Parameters:
x0 - the starting point of the trajectory
Returns:
a realization

seed

void seed(long seed)
Seed the construction process so that we may generate the same realizations.

Parameters:
seed - seeding the same seed gives arise to the same realization

SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.