[][src]Trait ndarray_linalg::lapack::triangular::Triangular_

pub trait Triangular_: Sized {
    unsafe fn inv_triangular(
        l: MatrixLayout,
        uplo: UPLO,
        d: Diag,
        a: &mut [Self]
    ) -> Result<()>;
unsafe fn solve_triangular(
        al: MatrixLayout,
        bl: MatrixLayout,
        uplo: UPLO,
        d: Diag,
        a: &[Self],
        b: &mut [Self]
    ) -> Result<()>; }
[]

Wraps *trtri and *trtrs

Required methods

unsafe fn inv_triangular(
    l: MatrixLayout,
    uplo: UPLO,
    d: Diag,
    a: &mut [Self]
) -> Result<()>

unsafe fn solve_triangular(
    al: MatrixLayout,
    bl: MatrixLayout,
    uplo: UPLO,
    d: Diag,
    a: &[Self],
    b: &mut [Self]
) -> Result<()>

Implementations on Foreign Types

impl Triangular_ for f64[src][]

impl Triangular_ for f32[src][]

Implementors

impl Triangular_ for c32[src][]

impl Triangular_ for c64[src][]