Struct lfa::SimpleLinear [] [src]

pub struct SimpleLinear<I: ?Sized, P: Projector<I>> {
    pub projector: P,
    pub weights: Vector<f64>,
    // some fields omitted
}

Fields

Methods

impl<I: ?Sized, P: Projector<I>> SimpleLinear<I, P>
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<I: Clone + ?Sized, P: Clone + Projector<I>> Clone for SimpleLinear<I, P>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<I: ?Sized, P: Projector<I>> Approximator<I> for SimpleLinear<I, P>
[src]

[src]

Evaluates the function and returns its output.

[src]