Package be.ac.ulg.montefiore.run.distributions

Examples of be.ac.ulg.montefiore.run.distributions.MultiGaussianDistribution


   *
   * @param dimension The dimension of the vectors.
   */
  public OpdfMultiGaussian(int dimension)
  {
    distribution = new MultiGaussianDistribution(dimension);
  }
View Full Code Here


  {   
    if (covariance.length == 0 || mean.length != covariance.length ||
        covariance.length != covariance[0].length)
      throw new IllegalArgumentException();
   
    distribution = new MultiGaussianDistribution(mean, covariance);
  }
View Full Code Here

          covariance[r][c] += omm[r] * omm[c] * weights[i];
     
      i++;
    }
   
    distribution = new MultiGaussianDistribution(mean, covariance);
  }
View Full Code Here

TOP

Related Classes of be.ac.ulg.montefiore.run.distributions.MultiGaussianDistribution

Copyright © 2018 www.massapicom. 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.