Click or drag to resize
Accord.NET (logo)

MarkovIndependentFactorCompute Method (Int32, Int32, Double, Int32, Int32)

Computes the factor potential function for the given parameters.

Namespace:  Accord.Statistics.Models.Fields.Functions.Specialized
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public override double Compute(
	int previousState,
	int currentState,
	double[][] observations,
	int index,
	int outputClass = 0
)
Request Example View Source

Parameters

previousState
Type: SystemInt32
The previous state in a given sequence of states.
currentState
Type: SystemInt32
The current state in a given sequence of states.
observations
Type: SystemDouble
The observation vector.
index
Type: SystemInt32
The index of the observation in the current state of the sequence.
outputClass (Optional)
Type: SystemInt32
The output class label for the sequence.

Return Value

Type: Double
The value of the factor potential function evaluated for the given parameters.
See Also