Trait Kernel
criterion_stats::univariate::kde::kernel
pub trait Kernel<A>: Copy + Sync where A: Float, { fn evaluate(&self, x: A) -> A; }
Kernel function
fn evaluate(&self, x: A) -> A
Apply the kernel function to the given x-value.
impl<A> Kernel<A> for Gaussian where A: Float,