pub trait BaseMatOpStencil {
    type NumType;
    fn stencil(&self) -> Array2<Self::NumType>;
    fn stencil_inv(&self) -> Array2<Self::NumType>;
}
Expand description

Collection of stencil matrix operators

Associated Types

Scalar type of matrix

Required methods

Transformation stencil composite -> orthogonal space

Inverse of transformation stencil

Implementors