Click or drag to resize
Accord.NET (logo)

BaseBaumWelchLearningComputeForwardBackward Method

Computes the forward and backward probabilities matrices for a given observation referenced by its index in the input training data.

Namespace:  Accord.Statistics.Models.Markov.Learning
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
protected abstract void ComputeForwardBackward(
	int index,
	double[,] lnFwd,
	double[,] lnBwd
)
Request Example View Source

Parameters

index
Type: SystemInt32
The index of the observation in the input training data.
lnFwd
Type: SystemDouble
Returns the computed forward probabilities matrix.
lnBwd
Type: SystemDouble
Returns the computed backward probabilities matrix.
See Also