pub trait Responsive<N>where
    N: Neural,{
    // Required methods
    fn get_best_matching(
        &self,
        neurons: &N,
        pattern: &ArrayView1<'_, f64>
    ) -> usize;
    fn clone_dyn(&self) -> BoxedResponsive<N>;
}
Expand description

Interface for structures encapsulating representations input patterns. See neural tuning

Required Methods§

source

fn get_best_matching(&self, neurons: &N, pattern: &ArrayView1<'_, f64>) -> usize

source

fn clone_dyn(&self) -> BoxedResponsive<N>

Implementors§