|
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
)
Protected MustOverride Sub ComputeForwardBackward (
index As Integer,
lnFwd As Double(,),
lnBwd As Double(,)
)
Request Example
View SourceParameters
- 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