[][src]Trait hcomplex::transform::DerivDir

pub trait DerivDir<U>: Transform<U> {
    pub fn deriv_dir(&self, p: U, d: U) -> U;
}

Directionally differentiable transformation.

Required methods

pub fn deriv_dir(&self, p: U, d: U) -> U[src]

Find the directinal derivative of self at the specified point p via the specified direction d.

Loading content...

Implementors

impl<T: NumCast + Algebra + Dot<Output = T> + Clone> DerivDir<Construct<T, Construct<T, T>>> for Moebius<Complex<T>>[src]

impl<U: Mul<U, Output = U>, M> DerivDir<U> for M where
    M: Deriv<U>, 
[src]

Loading content...