Trait funspace::traits::LaplacianInverse[][src]

pub trait LaplacianInverse<T> {
    fn laplace(&self) -> Array2<T>;
fn laplace_inv(&self) -> Array2<T>;
fn laplace_inv_eye(&self) -> Array2<T>; }
Expand description

Define (Pseudo-) Inverse of Laplacian

These operators are usefull when solving second order equations

Required methods

Laplacian $ L $

Pseudoinverse mtrix of Laplacian $ L^{-1} $

Pseudoidentity matrix of laplacian $ L^{-1} L $

Implementors