[][src]Trait lfa::core::Parameterised

pub trait Parameterised {
    fn weights(&self) -> Matrix<f64>;

    fn n_weights(&self) -> usize { ... }
}

An interface for approximators parameterised by a set of weights.

Required methods

fn weights(&self) -> Matrix<f64>

Return a copy of the approximator weights.

Loading content...

Provided methods

fn n_weights(&self) -> usize

Returns the total number of weights.

Loading content...

Implementations on Foreign Types

impl<T: Parameterised> Parameterised for Box<T>[src]

Loading content...

Implementors

impl Parameterised for PairFunction[src]

impl Parameterised for ScalarFunction[src]

impl Parameterised for TripleFunction[src]

impl Parameterised for VectorFunction[src]

impl<P, E: Parameterised> Parameterised for LFA<P, E>[src]

impl<P, E: Parameterised, T> Parameterised for TransformedLFA<P, E, T>[src]

Loading content...