Trait ndarray_linalg::lapack_traits::triangular::Triangular_
[−]
pub trait Triangular_: Sized { unsafe fn inv_triangular(
l: MatrixLayout,
_: UPLO,
_: Diag,
a: &mut [Self]
) -> Result<()>; unsafe fn solve_triangular(
al: MatrixLayout,
bl: MatrixLayout,
_: UPLO,
_: Diag,
a: &[Self],
b: &mut [Self]
) -> Result<()>; }
Wraps *trtri
and *trtrs
Required Methods
unsafe fn inv_triangular(
l: MatrixLayout,
_: UPLO,
_: Diag,
a: &mut [Self]
) -> Result<()>
l: MatrixLayout,
_: UPLO,
_: Diag,
a: &mut [Self]
) -> Result<()>
unsafe fn solve_triangular(
al: MatrixLayout,
bl: MatrixLayout,
_: UPLO,
_: Diag,
a: &[Self],
b: &mut [Self]
) -> Result<()>
al: MatrixLayout,
bl: MatrixLayout,
_: UPLO,
_: Diag,
a: &[Self],
b: &mut [Self]
) -> Result<()>