pub trait Differentiable1D<T>: Function1Dwhere
    T: Function1D,
{ fn differentiate(&self) -> Result<T, Error>; }
Expand description

General Information

Every differentiable 1D function-like struct must implement this trait. It is important to know which kind of function will result from differentiating. Such a function needs to become a struct that represents a family of it’s kind and also implements the trait Function1D.

Functions

  • differentiate(...) - Results in a function product of differentiation.

Required Methods§

Results in a function product of differentiation.

Implementors§