Skip to main content

PairedNormalGrad

Type Alias PairedNormalGrad 

Source
pub type PairedNormalGrad = Grad<[f64; 2], [f64; 2]>;

Aliased Type§

pub struct PairedNormalGrad {
    pub mu: [f64; 2],
    pub Sigma: [f64; 2],
}

Fields§

§mu: [f64; 2]

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

§Sigma: [f64; 2]

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

Trait Implementations§

Source§

impl Mul<f64> for PairedNormalGrad

Source§

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

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more