Package aima.core.probability

Examples of aima.core.probability.CategoricalDistribution.multiplyBy()


    // <b>P</b>(e<sub>t+1</sub> | X<sub>t+1</sub>)
    CategoricalDistribution s2 = sensorModel.posteriorDistribution(ProbUtil
        .constructConjunction(e_tp1.toArray(new Proposition[e_tp1
            .size()])), Xtp1);

    return s2.multiplyBy(s1).normalize();
  }

  @Override
  public CategoricalDistribution backward(CategoricalDistribution b_kp2t,
      List<AssignmentProposition> e_kp1) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.