Trait ndarray_numtest::assert::AssertAllClose
[−]
[src]
pub trait AssertAllClose: Sized { type Tol; fn assert_allclose(&self, truth: &Self, rtol: Self::Tol); }
test two arrays are close in maximum norm
Associated Types
type Tol
Required Methods
fn assert_allclose(&self, truth: &Self, rtol: Self::Tol)
Implementors
impl AssertAllClose for Vec<f64>impl<D: Dimension> AssertAllClose for Array<f64, D>impl AssertAllClose for Vec<f32>impl<D: Dimension> AssertAllClose for Array<f32, D>impl AssertAllClose for Vec<Complex<f64>>impl<D: Dimension> AssertAllClose for Array<Complex<f64>, D>impl AssertAllClose for Vec<Complex<f32>>impl<D: Dimension> AssertAllClose for Array<Complex<f32>, D>