DenseSolveCore

Trait DenseSolveCore 

Source
pub trait DenseSolveCore<T: ComplexField>: SolveCore<T> {
    // Required methods
    fn reconstruct(&self) -> Mat<T>;
    fn inverse(&self) -> Mat<T>;
}
Expand description

dense linear system solver

Required Methods§

Source

fn reconstruct(&self) -> Mat<T>

returns an approximation of the matrix that was used to create the decomposition

Source

fn inverse(&self) -> Mat<T>

returns an approximation of the inverse of the matrix that was used to create the decomposition

Implementations on Foreign Types§

Source§

impl<T: ComplexField, S: ?Sized + DenseSolveCore<T>> DenseSolveCore<T> for &S

Source§

fn reconstruct(&self) -> Mat<T>

Source§

fn inverse(&self) -> Mat<T>

Implementors§