Skip to main content

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>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§