Trait lax::triangular::SolveTriangularImpl
source · pub trait SolveTriangularImpl: Scalar {
// Required method
fn solve_triangular(
al: MatrixLayout,
bl: MatrixLayout,
uplo: UPLO,
d: Diag,
a: &[Self],
b: &mut [Self],
) -> Result<()>;
}
Expand description
Solve linear problem for triangular matrices
§LAPACK correspondance
f32 | f64 | c32 | c64 |
---|---|---|---|
strtrs | dtrtrs | ctrtrs | ztrtrs |
Required Methods§
fn solve_triangular( al: MatrixLayout, bl: MatrixLayout, uplo: UPLO, d: Diag, a: &[Self], b: &mut [Self], ) -> Result<()>
Object Safety§
This trait is not object safe.