Accord.Statistics.Models.Markov.Learning.BaumWelchLearningBase.ComputeKsi C# (CSharp) Method

ComputeKsi() protected abstract method

Computes the ksi matrix of probabilities for a given observation referenced by its index in the input training data.
protected abstract ComputeKsi ( int index, double fwd, double bwd, double scaling ) : void
index int The index of the observation in the input training data.
fwd double The matrix of forward probabilities for the observation.
bwd double The matrix of backward probabilities for the observation.
scaling double The scaling vector computed in previous calculations.
return void
        protected abstract void ComputeKsi(int index, double[,] fwd, double[,] bwd, double[] scaling);