Trait linfa_linalg::triangular::Triangular

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

Operations on triangular matrices

Required Methods§

source

fn is_triangular(&self, uplo: UPLO) -> bool

Check if matrix is triangular

Implementations on Foreign Types§

source§

impl<A, S> Triangular for ArrayBase<S, Ix2>
where A: Zero, S: Data<Elem = A>,

source§

fn is_triangular(&self, uplo: UPLO) -> bool

Implementors§