pub trait Entropy: Distribution {
    fn entropy(&self) -> f64;
}
Expand description

A distribution capable of computing the differential entropy.

Required Methods§

Compute the differential entropy.

The entropy is computed in nats.

Implementors§