Struct rgsl::types::multifit_solver::MultiFitFunctionFdf[][src]

pub struct MultiFitFunctionFdf {
    pub f: Option<Box<dyn Fn(VectorF64, VectorF64) -> Value>>,
    pub df: Option<Box<dyn Fn(VectorF64, MatrixF64) -> Value>>,
    pub fdf: Option<Box<dyn Fn(VectorF64, VectorF64, MatrixF64) -> Value>>,
    pub n: usize,
    pub p: usize,
    // some fields omitted
}

Fields

f: Option<Box<dyn Fn(VectorF64, VectorF64) -> Value>>df: Option<Box<dyn Fn(VectorF64, MatrixF64) -> Value>>fdf: Option<Box<dyn Fn(VectorF64, VectorF64, MatrixF64) -> Value>>n: usizep: usize

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.