Accord.Statistics.Models.Markov.Learning.BaseBaumWelchLearning.ComputeForwardBackward C# (CSharp) 메소드

ComputeForwardBackward() 보호된 추상적인 메소드

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.
리턴 void
        protected abstract void ComputeForwardBackward(int index, double[,] lnFwd, double[,] lnBwd);