Skip to main content

BvNormalGrad

Type Alias BvNormalGrad 

Source
pub type BvNormalGrad = Grad<[f64; 2], ([f64; 2], f64)>;

Aliased Type§

pub struct BvNormalGrad {
    pub mu: [f64; 2],
    pub Sigma: ([f64; 2], f64),
}

Fields§

§mu: [f64; 2]

Gradient of the mean parameter \(\bm{\mu}\).

§Sigma: ([f64; 2], f64)

Gradient of the covariance parameter \(\bm{\Sigma}\).

Trait Implementations§

Source§

impl Mul<f64> for BvNormalGrad

Source§

type Output = Grad<[f64; 2], ([f64; 2], f64)>

The resulting type after applying the * operator.
Source§

fn mul(self, sf: f64) -> Self

Performs the * operation. Read more