pub trait FitModelTrait<T, U, const NPARAMS: usize>
where T: Float + Into<U>, U: LikeFloat,
{ // Required method fn model(t: T, param: &[U; NPARAMS]) -> U where T: Float + Into<U>, U: LikeFloat; }

Required Methods§

source

fn model(t: T, param: &[U; NPARAMS]) -> U
where T: Float + Into<U>, U: LikeFloat,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, U> FitModelTrait<T, U, NPARAMS> for BazinFit
where T: Float + Into<U>, U: LikeFloat,

source§

impl<T, U> FitModelTrait<T, U, NPARAMS> for LinexpFit
where T: Float + Into<U>, U: LikeFloat,

source§

impl<T, U> FitModelTrait<T, U, NPARAMS> for VillarFit
where T: Float + Into<U>, U: LikeFloat,