Array of correlated 1-D stochastic processes More...
#include <ql/processes/stochasticprocessarray.hpp>

Public Member Functions | |
| StochasticProcessArray (const std::vector< boost::shared_ptr< StochasticProcess1D > > &, const Matrix &correlation) | |
| Size | size () const |
| returns the number of dimensions of the stochastic process | |
| Disposable< Array > | initialValues () const |
| returns the initial values of the state variables | |
| Disposable< Array > | drift (Time t, const Array &x) const |
returns the drift part of the equation, i.e., | |
| Disposable< Array > | expectation (Time t0, const Array &x0, Time dt) const |
| Disposable< Matrix > | diffusion (Time t, const Array &x) const |
returns the diffusion part of the equation, i.e. | |
| Disposable< Matrix > | covariance (Time t0, const Array &x0, Time dt) const |
| Disposable< Matrix > | stdDeviation (Time t0, const Array &x0, Time dt) const |
| Disposable< Array > | apply (const Array &x0, const Array &dx) const |
| Disposable< Array > | evolve (Time t0, const Array &x0, Time dt, const Array &dw) const |
| Time | time (const Date &) const |
|
const boost::shared_ptr < StochasticProcess1D > & | process (Size i) const |
| Disposable< Matrix > | correlation () const |
Public Member Functions inherited from StochasticProcess | |
| virtual Size | factors () const |
| returns the number of independent factors of the process | |
| void | update () |
Public Member Functions inherited from Observer | |
| Observer (const Observer &) | |
| Observer & | operator= (const Observer &) |
|
std::pair< std::set < boost::shared_ptr < Observable > >::iterator, bool > | registerWith (const boost::shared_ptr< Observable > &) |
| Size | unregisterWith (const boost::shared_ptr< Observable > &) |
| void | unregisterWithAll () |
Public Member Functions inherited from Observable | |
| Observable (const Observable &) | |
| Observable & | operator= (const Observable &) |
| void | notifyObservers () |
Protected Attributes | |
|
std::vector< boost::shared_ptr < StochasticProcess1D > > | processes_ |
| Matrix | sqrtCorrelation_ |
Protected Attributes inherited from StochasticProcess | |
| boost::shared_ptr< discretization > | discretization_ |
Additional Inherited Members | |
Protected Member Functions inherited from StochasticProcess | |
| StochasticProcess (const boost::shared_ptr< discretization > &) | |
Array of correlated 1-D stochastic processes
|
virtual |
returns the expectation
of the process after a time interval
according to the given discretization. This method can be overridden in derived classes which want to hard-code a particular discretization.
Reimplemented from StochasticProcess.
|
virtual |
returns the covariance
of the process after a time interval
according to the given discretization. This method can be overridden in derived classes which want to hard-code a particular discretization.
Reimplemented from StochasticProcess.
|
virtual |
returns the standard deviation
of the process after a time interval
according to the given discretization. This method can be overridden in derived classes which want to hard-code a particular discretization.
Reimplemented from StochasticProcess.
|
virtual |
applies a change to the asset value. By default, it returns
.
Reimplemented from StochasticProcess.
returns the asset value after a time interval
according to the given discretization. By default, it returns
where
is the expectation and
the standard deviation.
Reimplemented from StochasticProcess.
returns the time value corresponding to the given date in the reference system of the stochastic process.
Reimplemented from StochasticProcess.