Package aima.core.probability

Examples of aima.core.probability.Factor.pointwiseProduct()


  private Factor pointwiseProduct(List<Factor> factors) {

    Factor product = factors.get(0);
    for (int i = 1; i < factors.size(); i++) {
      product = product.pointwiseProduct(factors.get(i));
    }

    return product;
  }
}
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.