Trait criterion_stats::univariate::kde::kernel::Kernel[][src]

pub trait Kernel<A>: Copy + Sync where
    A: Float, 
{ fn evaluate(&self, x: A) -> A; }

Kernel function

Required methods

fn evaluate(&self, x: A) -> A[src]

Apply the kernel function to the given x-value.

Loading content...

Implementors

impl<A> Kernel<A> for Gaussian where
    A: Float, 
[src]

Loading content...