Click or drag to resize
Accord.NET (logo)

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
)

Parameters

previous
Type: SystemInt32
The previous state index.
observation
Type: SystemDouble
The observation at the current state.

Return Value

Type: Double
An array containing the values for the observations in each next possible state.
See Also