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

f32f64c32c64
strtrsdtrtrsctrtrsztrtrs

Required Methods§

source

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.

Implementations on Foreign Types§

source§

impl SolveTriangularImpl for f32

source§

fn solve_triangular( a_layout: MatrixLayout, b_layout: MatrixLayout, uplo: UPLO, diag: Diag, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveTriangularImpl for f64

source§

fn solve_triangular( a_layout: MatrixLayout, b_layout: MatrixLayout, uplo: UPLO, diag: Diag, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveTriangularImpl for c32

source§

fn solve_triangular( a_layout: MatrixLayout, b_layout: MatrixLayout, uplo: UPLO, diag: Diag, a: &[Self], b: &mut [Self], ) -> Result<()>

source§

impl SolveTriangularImpl for c64

source§

fn solve_triangular( a_layout: MatrixLayout, b_layout: MatrixLayout, uplo: UPLO, diag: Diag, a: &[Self], b: &mut [Self], ) -> Result<()>

Implementors§