pub trait AsLinearOperator<F: Float> {
// Required method
fn as_linear_operator(&self) -> Box<dyn LinearOperator<F>>;
}
Expand description
Convert a sparse matrix to a linear operator
Required Methods§
Sourcefn as_linear_operator(&self) -> Box<dyn LinearOperator<F>>
fn as_linear_operator(&self) -> Box<dyn LinearOperator<F>>
Convert to a linear operator