|
GeneralMarkovFunction Delegate
|
General Markov function for arbitrary state-emission density definitions.
Namespace:
Accord.Statistics.Models.Markov.Hybrid
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public delegate double[] GeneralMarkovFunction(
int previous,
double[] observation
)
Public Delegate Function GeneralMarkovFunction (
previous As Integer,
observation As Double()
) As Double()
Parameters
- previous
- Type: SystemInt32
The previous state index. - observation
- Type: SystemDouble
The observation at the current state.
Return Value
Type:
DoubleAn array containing the values for the observations in each next possible state.
See Also