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

Kernel function

Required Methods§

Apply the kernel function to the given x-value.

Implementors§