pub trait Triangular {
    fn is_triangular(&self, uplo: UPLO) -> bool;
}
Expand description

Operations on triangular matrices

Required Methods

Check if matrix is triangular

Implementations on Foreign Types

Implementors