MatrixExt

Trait MatrixExt 

Source
pub trait MatrixExt {
    // Required method
    fn any_nan(&self) -> bool;
}

Required Methods§

Source

fn any_nan(&self) -> bool

Returns true if any element in the matrix is NaN.

Implementations on Foreign Types§

Source§

impl<R, C, S> MatrixExt for Matrix<Real, R, C, S>
where R: Dim, C: Dim, S: RawStorage<Real, R, C>,

Source§

fn any_nan(&self) -> bool

Implementors§