pub trait Bandwidth {
    fn bandwidth(&self, data: &[f32]) -> f32;
}
Expand description

Shared behavior for bandwidth selection strategies.

Required Methods

Returns a bandwidth value estimated from the points in data.

Implementors