pub trait ErrorFunction<T>: Clone + Debugwhere
    T: ErfFloat,
{ fn erf(x: T) -> T; fn max_dx_nonunity_normal_cdf(sigma: T) -> T; fn normal_cdf(x: T, mean: T, sigma: T) -> T { ... } fn min_dx_nonzero_normal_cdf(sigma: T) -> T { ... } }
Expand description

Error function trait

Error function is used to find integral over cell of the Gaussian distribution.

Wikipedia article

Required Methods§

Provided Methods§

Implementors§