AIMA.Core.Probability.Reasoning.FixedLagSmoothing.FixedLagSmoothing C# (CSharp) Method

FixedLagSmoothing() public method

public FixedLagSmoothing ( HiddenMarkovModel hmm, int timelag ) : AIMA.Probability
hmm HiddenMarkovModel
timelag int
return AIMA.Probability
        public FixedLagSmoothing(HiddenMarkovModel hmm, int timelag)
        {
            this.hmm = hmm;
            this.timelag = timelag;
            this.evidenceFromSmoothedStepToPresent = new List<String>();
            this.time = 1;
            this.forwardMessage = hmm.prior();
            this.B = hmm.transitionModel().unitMatrix();
        }