Accord.Statistics.Models.Markov.Learning.BaseBaumWelchLearning.ComputeForwardBackward C# (CSharp) Method

ComputeForwardBackward() protected abstract method

Computes the forward and backward probabilities matrices for a given observation referenced by its index in the input training data.
protected abstract ComputeForwardBackward ( int index, double lnFwd, double lnBwd ) : void
index int The index of the observation in the input training data.
lnFwd double Returns the computed forward probabilities matrix.
lnBwd double Returns the computed backward probabilities matrix.
return void
        protected abstract void ComputeForwardBackward(int index, double[,] lnFwd, double[,] lnBwd);