pub trait IntoTriangular {
    fn triangular_inplace(&mut self, uplo: UPLO) -> Result<&mut Self>;
    fn into_triangular(self, uplo: UPLO) -> Result<Self>
    where
        Self: Sized
; }
Expand description

Transform square matrix into triangular matrix

Required Methods

Transform square matrix into a strict triangular matrix in place, zeroing out the other elements.

Transform square matrix into a strict triangular matrix, zeroing out the other elements.

Implementations on Foreign Types

Implementors