[][src]Struct pointprocesses::estimators::kernels::EpanechnikovKernel

pub struct EpanechnikovKernel { /* fields omitted */ }

The Epanechnikov kernel is given by $$ K_h(x, x') = D\left( \frac{|x-x'|}{h} \right) $$ where $D(u) = \frac34(1-u^2)\mathbf{1}_{|u|\leq 1}$.

Methods

impl EpanechnikovKernel[src]

pub fn new(bandwidth: f64) -> Self[src]

Instantiate a new Epanechnikov kernel.

Trait Implementations

impl RegKernel for EpanechnikovKernel[src]

impl Clone for EpanechnikovKernel[src]

impl Copy for EpanechnikovKernel[src]

impl Debug for EpanechnikovKernel[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,