1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*!
Provides statics related utility functions used in other parts of the library.
*/
use core::ops::{Add, Mul};

use num_traits::Float;

/// Represents a gaussian distribution with mean and variance..
#[derive(Debug)]
pub struct GaussianDistribution<F: Float> {
    /// Mean of the distribution.
    pub mean: F,
    /// Variance of the distribution.
    pub var: F,
}

impl<F: Float> GaussianDistribution<F> {
    /// Create a new Gaussian distribution.
    pub fn new(mean: F, var: F) -> Self {
        GaussianDistribution { mean, var }
    }
}

impl<F: Float> Add for GaussianDistribution<F> {
    type Output = GaussianDistribution<F>;

    fn add(self, other: GaussianDistribution<F>) -> GaussianDistribution<F> {
        GaussianDistribution {
            mean: self.mean + other.mean,
            var: self.var + other.var,
        }
    }
}

impl<F: Float> Mul for GaussianDistribution<F> {
    type Output = GaussianDistribution<F>;

    fn mul(self, other: GaussianDistribution<F>) -> GaussianDistribution<F> {
        let mean = (self.var * other.mean + other.var * self.mean) / (self.var + other.var);
        let var = F::one() / (F::one() / self.var + F::one() / other.var);

        GaussianDistribution { mean, var }
    }
}