Model
abstract class Model
Model.
classDiagram
Model <|-- MarkovModel
MarkovModel <|-- HiddenMarkovModel
HiddenMarkovModel -- StateSpaceModel
link Model "../Model/"
link MarkovModel "../MarkovModel/"
link HiddenMarkovModel "../HiddenMarkovModel/"
link StateSpaceModel "../StateSpaceModel/"
Member Functions
Name | Description |
---|---|
simulate | Simulate. |
simulate | Simulate the t th step. |
forecast | Forecast the t th step. |
size | Size. |
Member Function Details
forecast
function forecast(t:Integer)
Forecast the t
th step.
simulate
function simulate()
Simulate.
function simulate(t:Integer)
Simulate the t
th step.
size
function size() -> Integer
Size. This is the number of steps of simulate(Integer)
to be performed
after the initial call to simulate()
.