All Downloads are FREE. Search and download functionalities are using the official Maven repository.

breeze.stats.distributions.Moments.scala Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package breeze.stats.distributions

/**
 * Interface for distributions that can report on some of their moments
 *
 * @author dlwh
 **/
trait Moments[Mean, Variance] {
  def mean: Mean
  def variance: Variance
  def entropy: Double
  def mode: Mean
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy