Skip to main content

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

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§