Accord.Statistics.Models.Markov.Learning.BaumWelchLearningBase.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 &fwd, double &bwd, double &scaling ) : void
index int The index of the observation in the input training data.
fwd double Returns the computed forward probabilities matrix.
bwd double Returns the computed backward probabilities matrix.
scaling double Returns the scaling parameters used during calculations.
리턴 void
        protected abstract void ComputeForwardBackward(int index, out double[,] fwd, out double[,] bwd,
                                                       out double[] scaling);