Solve

Trait Solve 

Source
pub trait Solve<A> {
    // Required method
    fn solve_into(&self, b: &Array1<A>) -> Result<Array1<A>, LapackError>;
}
Expand description

Linear system solver trait

Required Methods§

Source

fn solve_into(&self, b: &Array1<A>) -> Result<Array1<A>, LapackError>

Implementors§