|
BaseBaumWelchLearningComputeKsi Method
|
Computes the ksi matrix of probabilities 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 ComputeKsi(
int index,
double[,] lnFwd,
double[,] lnBwd
)
Protected MustOverride Sub ComputeKsi (
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
The matrix of forward probabilities for the observation. - lnBwd
- Type: SystemDouble
The matrix of backward probabilities for the observation.
See Also