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